diff options
| author | Dan Albert <danalbert@google.com> | 2015-07-09 19:48:54 +0000 |
|---|---|---|
| committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-07-09 19:48:55 +0000 |
| commit | a35affb5fc9e7cd19a2669a82cda19789314a783 (patch) | |
| tree | 29b1d8281e4355d70bf32b4efffa5e5a9350da2b /adb/qemu_tracing.h | |
| parent | a6241a0298de5e773ef113626ca4686f9c038868 (diff) | |
| parent | 459df8f3a14d4c614f0211049800cf7cad6d30ad (diff) | |
Merge "Turn on -Wformat-nonliteral."
Diffstat (limited to 'adb/qemu_tracing.h')
| -rw-r--r-- | adb/qemu_tracing.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/adb/qemu_tracing.h b/adb/qemu_tracing.h index ff42d4fb69..aefba57385 100644 --- a/adb/qemu_tracing.h +++ b/adb/qemu_tracing.h @@ -21,8 +21,10 @@ #ifndef __QEMU_TRACING_H #define __QEMU_TRACING_H +#include "base/macros.h" + /* Initializes connection with the adb-debug qemud service in the emulator. */ int adb_qemu_trace_init(void); -void adb_qemu_trace(const char* fmt, ...); +void adb_qemu_trace(const char* fmt, ...) ATTRIBUTE_FORMAT(1, 2); #endif /* __QEMU_TRACING_H */ |
