diff options
author | Elliott Hughes <enh@google.com> | 2015-04-09 01:51:36 +0200 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2015-04-09 01:56:17 +0200 |
commit | 018ed31c515de2c840dedaebb078ab455bf37ae8 (patch) | |
tree | 1d6cd4cb955dc89e313a6b3f894a10af4d833504 /ui.h | |
parent | Merge "Remove the fixed screen size assumptions." (diff) | |
download | android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar.gz android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar.bz2 android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar.lz android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar.xz android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.tar.zst android_bootable_recovery-018ed31c515de2c840dedaebb078ab455bf37ae8.zip |
Diffstat (limited to '')
-rw-r--r-- | ui.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 --- |