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

Commit 6ffbad11 authored by Greg Kaiser's avatar Greg Kaiser
Browse files

Fix debug macro

If FILE_DUMP_ENABLE is defined, this wouldn't compile, but we
fix that with a '\' continuation for the macro definition.

Test: TreeHugger
Bug: 229389483
Change-Id: I15920ac3db863115e9f0f8275cd903421fea8a95
parent 8530ee45
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -49,7 +49,7 @@ namespace android {
    #define INPUT_DUMP_EXT      "m2v"
    #define GENERATE_FILE_NAMES() {                         \
        nsecs_t now = systemTime();                         \
        sprintf(mInFile, "%s_%" PRId64 ".%s",
        sprintf(mInFile, "%s_%" PRId64 ".%s",               \
                INPUT_DUMP_PATH, now,                       \
                INPUT_DUMP_EXT);                            \
    }