debugserver: Fix wrong service_error_t return type in debugserver_client_send()
diff --git a/src/debugserver.c b/src/debugserver.c
index ca52162..37b54de 100644
--- a/src/debugserver.c
+++ b/src/debugserver.c
@@ -113,7 +113,7 @@
 	int bytes = 0;
 
 	if (!client || !data || (size == 0)) {
-		return SERVICE_E_INVALID_ARG;
+		return DEBUGSERVER_E_INVALID_ARG;
 	}
 
 	debug_info("sending %d bytes", size);