From 8bd04f650342fd7225765ef6194c411bc54ce7e5 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Tue, 10 Dec 2019 21:00:28 -0800 Subject: Fix missing declaration warnings Allows better compilation by the compiler. --- src/recovery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/recovery.c') 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); } -- cgit v1.1-32-gdbae