diff options
author | Glenn Kasten <gkasten@google.com> | 2013-02-15 23:54:53 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2013-02-15 23:54:53 +0000 |
commit | c046148d93212f8a4da916bb860a1fa5926fe159 (patch) | |
tree | 1980477800bc27663417d5306d4af89de92533fb /include | |
parent | 4490bf05a9addf5a4e12e0da92f22d854e5ce9a0 (diff) | |
parent | dd9764290b3c1d801fea9505189cae29db919902 (diff) | |
download | frameworks_av-c046148d93212f8a4da916bb860a1fa5926fe159.zip frameworks_av-c046148d93212f8a4da916bb860a1fa5926fe159.tar.gz frameworks_av-c046148d93212f8a4da916bb860a1fa5926fe159.tar.bz2 |
Merge "Temporary additional logging to investigate bug"
Diffstat (limited to 'include')
-rw-r--r-- | include/media/nbaio/NBLog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/media/nbaio/NBLog.h b/include/media/nbaio/NBLog.h index 8fc417f..107ba66 100644 --- a/include/media/nbaio/NBLog.h +++ b/include/media/nbaio/NBLog.h @@ -115,7 +115,7 @@ public: virtual ~Writer() { } virtual void log(const char *string); - virtual void logf(const char *fmt, ...); + virtual void logf(const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); virtual void logvf(const char *fmt, va_list ap); virtual void logTimestamp(); virtual void logTimestamp(const struct timespec& ts); @@ -149,7 +149,7 @@ public: LockedWriter(size_t size, void *shared); virtual void log(const char *string); - virtual void logf(const char *fmt, ...); + virtual void logf(const char *fmt, ...) __attribute__ ((format (printf, 2, 3))); virtual void logvf(const char *fmt, va_list ap); virtual void logTimestamp(); virtual void logTimestamp(const struct timespec& ts); |