summaryrefslogtreecommitdiff
path: root/src/tools/echo/echo_client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/echo/echo_client.c')
-rw-r--r--src/tools/echo/echo_client.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/echo/echo_client.c b/src/tools/echo/echo_client.c
index 36942028..9cf56cee 100644
--- a/src/tools/echo/echo_client.c
+++ b/src/tools/echo/echo_client.c
@@ -33,8 +33,10 @@ int client_main()
char * message = "Client says hi!";
ssize_t count = 0;
- if(ap_init(CLIENT_AP_NAME))
+ if(ap_init(CLIENT_AP_NAME)) {
+ printf("Failed to init AP.");
return -1;
+ }
fd = flow_alloc(SERVER_AP_NAME, NULL, NULL);
if (fd < 0) {