aboutsummaryrefslogtreecommitdiffstats
path: root/fastboot/engine.c
diff options
context:
space:
mode:
Diffstat (limited to 'fastboot/engine.c')
-rw-r--r--fastboot/engine.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fastboot/engine.c b/fastboot/engine.c
index 6d62c6e2..f29cc034 100644
--- a/fastboot/engine.c
+++ b/fastboot/engine.c
@@ -271,11 +271,11 @@ void fb_queue_notice(const char *notice)
a->data = (void*) notice;
}
-void fb_execute_queue(usb_handle *usb)
+int fb_execute_queue(usb_handle *usb)
{
Action *a;
char resp[FB_RESPONSE_SZ+1];
- int status;
+ int status = 0;
a = action_list;
resp[FB_RESPONSE_SZ] = 0;
@@ -307,5 +307,5 @@ void fb_execute_queue(usb_handle *usb)
}
fprintf(stderr,"finished. total time: %.3fs\n", (now() - start));
+ return status;
}
-