diff options
author | Elliott Hughes <enh@google.com> | 2016-06-30 20:18:40 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-06-30 20:18:40 +0200 |
commit | 691db7ba7707129aaed94c4fe5286878e631bf5a (patch) | |
tree | 024be59c3b7ba2cbcd895c800dacb68b39946d3f /updater/install.cpp | |
parent | Merge \"Fix google-explicit-constructor warnings in bootable/recovery.\" (diff) | |
parent | Merge "Fix install.h's use of attribute printf." (diff) | |
download | android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar.gz android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar.bz2 android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar.lz android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar.xz android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.tar.zst android_bootable_recovery-691db7ba7707129aaed94c4fe5286878e631bf5a.zip |
Diffstat (limited to 'updater/install.cpp')
-rw-r--r-- | updater/install.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/updater/install.cpp b/updater/install.cpp index cf3e938a4..4c4886d51 100644 --- a/updater/install.cpp +++ b/updater/install.cpp @@ -80,8 +80,7 @@ static void uiPrint(State* state, const std::string& buffer) { fprintf(stderr, "%s", buffer.c_str()); } -__attribute__((__format__(printf, 2, 3))) __nonnull((2)) -void uiPrintf(State* state, const char* format, ...) { +void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) { std::string error_msg; va_list ap; |