summaryrefslogtreecommitdiffstats
path: root/ui.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-04-09 03:03:29 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-04-09 03:03:29 +0200
commit4c035efb5511dc259a0f4b8565001c364d0b1830 (patch)
tree1d6cd4cb955dc89e313a6b3f894a10af4d833504 /ui.h
parentam 0d4f2b6d: am 900c9a61: Merge "Remove the fixed screen size assumptions." (diff)
parentam fbde407e: Merge "Enable printf format argument checking." (diff)
downloadandroid_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar.gz
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar.bz2
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar.lz
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar.xz
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.tar.zst
android_bootable_recovery-4c035efb5511dc259a0f4b8565001c364d0b1830.zip
Diffstat (limited to 'ui.h')
-rw-r--r--ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.h b/ui.h
index 31a8a7fb1..a0580b703 100644
--- a/ui.h
+++ b/ui.h
@@ -63,7 +63,7 @@ class RecoveryUI {
// Write a message to the on-screen log (shown if the user has
// toggled on the text display).
- virtual void Print(const char* fmt, ...) = 0; // __attribute__((format(printf, 1, 2))) = 0;
+ virtual void Print(const char* fmt, ...) __printflike(2, 3) = 0;
// --- key handling ---