diff options
author | 2019-12-10 21:00:28 -0800 | |
---|---|---|
committer | 2020-04-12 16:05:01 -0700 | |
commit | 8bd04f650342fd7225765ef6194c411bc54ce7e5 (patch) | |
tree | 4823416e0241626a30921330e146901277cf9f2e /src/recovery.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/recovery.c')
-rw-r--r-- | src/recovery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/recovery.c b/src/recovery.c index 79c40ce..4bb1b9d 100644 --- a/src/recovery.c +++ b/src/recovery.c @@ -35,7 +35,7 @@ #include "restore.h" #include "recovery.h" -int recovery_progress_callback(irecv_client_t client, const irecv_event_t* event) { +static int recovery_progress_callback(irecv_client_t client, const irecv_event_t* event) { if (event->type == IRECV_PROGRESS) { //print_progress_bar(event->progress); } |