From 51d1a5f37c90faa416a5fbd9238aafbde718b074 Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sun, 20 Dec 2009 23:17:06 -0800 Subject: [PATCH] ICC fixes. --- tests/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/server.c b/tests/server.c index cdd22dea..68b3d801 100644 --- a/tests/server.c +++ b/tests/server.c @@ -61,7 +61,7 @@ void server_startup(server_startup_st *construct) { if (fgets(buffer, sizeof(buffer), fp) != NULL) { - pid_t pid = (pid_t)atol(buffer); + pid_t pid= (pid_t)atoi(buffer); if (pid != 0) kill(pid, SIGTERM); } @@ -99,7 +99,7 @@ void server_startup(server_startup_st *construct) for (x= 0; x < memcached_server_list_count(construct->servers); x++) { - printf("\t%s : %u\n", construct->servers[x].hostname, construct->servers[x].port); + printf("\t%s : %d\n", construct->servers[x].hostname, construct->servers[x].port); assert(construct->servers[x].fd == -1); assert(construct->servers[x].cursor_active == 0); } -- 2.30.2