diff options
author | Mikhail Lappo <miklelappo@gmail.com> | 2017-03-23 21:30:36 +0100 |
---|---|---|
committer | Mikhail Lappo <miklelappo@gmail.com> | 2017-03-23 21:52:04 +0100 |
commit | 20791bdcd7caad0e3ad3adedf7f9f932da278d96 (patch) | |
tree | 104e2d28effaf00225d4ad967a6d162c4f7cba59 /ui.cpp | |
parent | Merge "Checking unsigned variable less than zero" (diff) | |
download | android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar.gz android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar.bz2 android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar.lz android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar.xz android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.tar.zst android_bootable_recovery-20791bdcd7caad0e3ad3adedf7f9f932da278d96.zip |
Diffstat (limited to '')
-rw-r--r-- | ui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -240,7 +240,7 @@ void RecoveryUI::ProcessKey(int key_code, int updown) { } void* RecoveryUI::time_key_helper(void* cookie) { - key_timer_t* info = (key_timer_t*) cookie; + key_timer_t* info = static_cast<key_timer_t*>(cookie); info->ui->time_key(info->key_code, info->count); delete info; return nullptr; |