aboutsummaryrefslogtreecommitdiff
path: root/src/iperf_client_api.c
diff options
context:
space:
mode:
authorJef Poskanzer <jef@mail.acme.com>2013-11-08 21:19:59 -0800
committerJef Poskanzer <jef@mail.acme.com>2013-11-08 21:19:59 -0800
commit0e60ef1f9c72191466fbe767b5448f8137194b6b (patch)
tree34ef94264de9a95335db03bcd84899ddb3534c8c /src/iperf_client_api.c
parentd38ab4c8df5d5c64dc964ced942a776a7aeaaa42 (diff)
downloadiperf3-0e60ef1f9c72191466fbe767b5448f8137194b6b.tar.gz
Get rid of some compiler warnings about iprintf.
Diffstat (limited to 'src/iperf_client_api.c')
-rw-r--r--src/iperf_client_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/iperf_client_api.c b/src/iperf_client_api.c
index abbf3bf..2fdca45 100644
--- a/src/iperf_client_api.c
+++ b/src/iperf_client_api.c
@@ -341,7 +341,7 @@ iperf_run_client(struct iperf_test * test)
cJSON_AddItemToObject(test->json_start, "system_info", cJSON_CreateString(get_system_info()));
} else if (test->verbose) {
iprintf(test, "%s\n", version);
- iprintf(test, " ");
+ iprintf(test, "%s", "");
fflush(stdout);
system("uname -a");
}