summaryrefslogtreecommitdiffstats
path: root/updater/install.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-06-30 18:28:42 +0200
committerElliott Hughes <enh@google.com>2016-06-30 18:28:42 +0200
commit83ce7555183a9aa5bac6ccb82d3fa56447d22345 (patch)
tree5979501047000d1287f89d7108bca508c1edc5fd /updater/install.h
parentMerge "Minor minadbd cleanup." (diff)
downloadandroid_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar.gz
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar.bz2
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar.lz
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar.xz
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.tar.zst
android_bootable_recovery-83ce7555183a9aa5bac6ccb82d3fa56447d22345.zip
Diffstat (limited to '')
-rw-r--r--updater/install.h4
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