aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcel Bokhorst <marcel@bokhorst.biz>2013-05-02 21:28:57 +0200
committerMarcel Bokhorst <marcel@bokhorst.biz>2013-05-02 21:28:57 +0200
commit07b573f20aa1e578b14e642407fb94c639ed25bd (patch)
tree94fc5ca59849ad09542ce696973cafce2f2ef132
parent4d9a03bbf5a57bc6c874b8146c34fc46e596c15a (diff)
downloadbootable_recovery-07b573f20aa1e578b14e642407fb94c639ed25bd.zip
bootable_recovery-07b573f20aa1e578b14e642407fb94c639ed25bd.tar.gz
bootable_recovery-07b573f20aa1e578b14e642407fb94c639ed25bd.tar.bz2
recovery: fix sideload cancel
Change-Id: I76fcea55cc38edc713211742890b00acf8de4117
-rw-r--r--adb_install.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/adb_install.c b/adb_install.c
index 00c3cc0..1c88f1a 100644
--- a/adb_install.c
+++ b/adb_install.c
@@ -129,7 +129,7 @@ apply_from_adb() {
// kill the child
kill(data.child, SIGTERM);
- pthread_join(&sideload_thread, NULL);
+ pthread_join(sideload_thread, NULL);
ui_clear_key_queue();
struct stat st;