summaryrefslogtreecommitdiffstats
path: root/libusbmuxd
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-04-18 16:55:55 +0200
committerGravatar Nikias Bassen2012-04-18 16:55:55 +0200
commit4e0786e4b7c576f180cddce9b558484ed73d86e4 (patch)
tree1450764a9856ab69cdd7196c52fa5d531198711d /libusbmuxd
parent919587580c5e77f3936f3432115d2e10c7bac7c5 (diff)
downloadusbmuxd-4e0786e4b7c576f180cddce9b558484ed73d86e4.tar.gz
usbmuxd-4e0786e4b7c576f180cddce9b558484ed73d86e4.tar.bz2
win32: fix missing parameter for device_monitor_cleanup call
Diffstat (limited to 'libusbmuxd')
-rw-r--r--libusbmuxd/libusbmuxd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libusbmuxd/libusbmuxd.c b/libusbmuxd/libusbmuxd.c
index 0623b90..bb5f1f0 100644
--- a/libusbmuxd/libusbmuxd.c
+++ b/libusbmuxd/libusbmuxd.c
@@ -618,7 +618,7 @@ static void *device_monitor(void *data)
618#ifndef WIN32 618#ifndef WIN32
619 pthread_cleanup_pop(1); 619 pthread_cleanup_pop(1);
620#else 620#else
621 device_monitor_cleanup(); 621 device_monitor_cleanup(NULL);
622#endif 622#endif
623 return NULL; 623 return NULL;
624} 624}