summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/debugserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debugserver.c b/src/debugserver.c
index ceaf4a9..c517017 100644
--- a/src/debugserver.c
+++ b/src/debugserver.c
@@ -599,8 +599,8 @@ LIBIMOBILEDEVICE_API debugserver_error_t debugserver_client_set_argv(debugserver
599 char *p = m; 599 char *p = m;
600 char *q = (char*)argv[i]; 600 char *q = (char*)argv[i];
601 while (*q) { 601 while (*q) {
602 *p++ = debugserver_int2hex(*q >> 4); 602 *p++ = DEBUGSERVER_HEX_ENCODE_FIRST_BYTE(*q);
603 *p++ = debugserver_int2hex(*q & 0xf); 603 *p++ = DEBUGSERVER_HEX_ENCODE_SECOND_BYTE(*q);
604 q++; 604 q++;
605 } 605 }
606 606