summaryrefslogtreecommitdiffstats
path: root/tools/idevicedebugserverproxy.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2013-03-20 05:34:51 +0100
committerGravatar Nikias Bassen2013-03-20 05:34:51 +0100
commitefca491e4c19868a68a099638552f9ba431dca4b (patch)
tree4ed04996837945ca172da485b5aa507ca9b988c2 /tools/idevicedebugserverproxy.c
parenta49c508bc489199f1f352be1f5aaaafb07c10506 (diff)
downloadlibimobiledevice-efca491e4c19868a68a099638552f9ba431dca4b.tar.gz
libimobiledevice-efca491e4c19868a68a099638552f9ba431dca4b.tar.bz2
move thread and socket code to "common" subdir
Diffstat (limited to 'tools/idevicedebugserverproxy.c')
-rw-r--r--tools/idevicedebugserverproxy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/idevicedebugserverproxy.c b/tools/idevicedebugserverproxy.c
index 3a25ebc..baf3cd7 100644
--- a/tools/idevicedebugserverproxy.c
+++ b/tools/idevicedebugserverproxy.c
@@ -28,8 +28,8 @@
#include <libimobiledevice/libimobiledevice.h>
#include <libimobiledevice/lockdown.h>
-#include "socket.h"
-#include "thread.h"
+#include "common/socket.h"
+#include "common/thread.h"
#define info(...) fprintf(stdout, __VA_ARGS__); fflush(stdout)
#define debug(...) if(debug_mode) fprintf(stdout, __VA_ARGS__)