Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 548c2a1b authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix variable shadow compilation issue in Debug.cpp" into main

parents d84d4a60 000036b6
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -185,9 +185,9 @@ void printHexData(int32_t indent, const void *buf, size_t length,

    if ((int32_t)length < 0) {
        if (singleLineBytesCutoff < 0) func(cookie, "\n");
        char buf[64];
        sprintf(buf, "(bad length: %zu)", length);
        func(cookie, buf);
        char bufLocal[64];
        sprintf(bufLocal, "(bad length: %zu)", length);
        func(cookie, bufLocal);
        return;
    }