Skip to content

Commit

Permalink
debugserver: Fix wrong service_error_t return type in debugserver_cli…
Browse files Browse the repository at this point in the history
…ent_send()
  • Loading branch information
FunkyM committed Oct 9, 2014
1 parent 82be85a commit 75b0ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debugserver.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ LIBIMOBILEDEVICE_API debugserver_error_t debugserver_client_send(debugserver_cli
int bytes = 0;

if (!client || !data || (size == 0)) {
return SERVICE_E_INVALID_ARG;
return DEBUGSERVER_E_INVALID_ARG;
}

debug_info("sending %d bytes", size);
Expand Down

0 comments on commit 75b0ba0

Please sign in to comment.