diff options
author | 2019-12-10 21:00:28 -0800 | |
---|---|---|
committer | 2020-04-12 16:05:01 -0700 | |
commit | 8bd04f650342fd7225765ef6194c411bc54ce7e5 (patch) | |
tree | 4823416e0241626a30921330e146901277cf9f2e /src/dfu.c | |
parent | 791c218b48b6557f24d479a7aa7d6586a612a128 (diff) | |
download | idevicerestore-8bd04f650342fd7225765ef6194c411bc54ce7e5.tar.gz idevicerestore-8bd04f650342fd7225765ef6194c411bc54ce7e5.tar.bz2 |
Fix missing declaration warnings
Allows better compilation by the compiler.
Diffstat (limited to 'src/dfu.c')
-rw-r--r-- | src/dfu.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ #include "idevicerestore.h" #include "common.h" -int dfu_progress_callback(irecv_client_t client, const irecv_event_t* event) { +static int dfu_progress_callback(irecv_client_t client, const irecv_event_t* event) { if (event->type == IRECV_PROGRESS) { print_progress_bar(event->progress); } |