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

Commit 6d658a2a authored by Felipe Leme's avatar Felipe Leme Committed by android-build-merger
Browse files

Fixed C++ syntax.

am: 60869c9e

* commit '60869c9e':
  Fixed C++ syntax.
parents b1c3c74e 60869c9e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -144,7 +144,7 @@ void add_mountinfo() {
    mount_points.clear();
    DurationReporter duration_reporter(title, NULL);
    for_each_pid(do_mountinfo, NULL);
    MYLOGD("%s: %lu entries added to zip file\n", title, mount_points.size());
    MYLOGD("%s: %zu entries added to zip file\n", title, mount_points.size());
}

static void dump_dev_files(const char *title, const char *driverpath, const char *filename)
+3 −3
Original line number Diff line number Diff line
@@ -30,15 +30,15 @@
#endif

#ifndef MYLOGD
#define MYLOGD(fmt...) fprintf(stderr, fmt); ALOGD(fmt);
#define MYLOGD(...) fprintf(stderr, __VA_ARGS__); ALOGD(__VA_ARGS__);
#endif

#ifndef MYLOGI
#define MYLOGI(fmt...) fprintf(stderr, fmt); ALOGI(fmt);
#define MYLOGI(...) fprintf(stderr, __VA_ARGS__); ALOGI(__VA_ARGS__);
#endif

#ifndef MYLOGE
#define MYLOGE(fmt...) fprintf(stderr, fmt); ALOGE(fmt);
#define MYLOGE(...) fprintf(stderr, __VA_ARGS__); ALOGE(__VA_ARGS__);
#endif

#include <time.h>