diff options
author | Elliott Hughes <enh@google.com> | 2016-06-30 20:22:02 +0200 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2016-06-30 20:22:02 +0200 |
commit | 7c4a34195f8c3c0f7218876b0c8ea0883d324972 (patch) | |
tree | 024be59c3b7ba2cbcd895c800dacb68b39946d3f /updater/install.h | |
parent | Merge \\"Fix google-explicit-constructor warnings in bootable/recovery.\\" am: a9f648f010 (diff) | |
parent | Merge \"Fix install.h\'s use of attribute printf.\" (diff) | |
download | android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar.gz android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar.bz2 android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar.lz android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar.xz android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.tar.zst android_bootable_recovery-7c4a34195f8c3c0f7218876b0c8ea0883d324972.zip |
Diffstat (limited to 'updater/install.h')
-rw-r--r-- | updater/install.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/updater/install.h b/updater/install.h index 70e343404..b3b8a4dd5 100644 --- a/updater/install.h +++ b/updater/install.h @@ -20,8 +20,8 @@ void RegisterInstallFunctions(); // uiPrintf function prints msg to screen as well as logs -void uiPrintf(State* state, const char* format, ...); +void uiPrintf(State* _Nonnull state, const char* _Nonnull format, ...) __attribute__((__format__(printf, 2, 3))); -static int make_parents(char* name); +static int make_parents(char* _Nonnull name); #endif |