projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
c859868
)
ICC fixes.
author
Brian Aker
<brian@gaz>
Mon, 21 Dec 2009 07:17:06 +0000
(23:17 -0800)
committer
Brian Aker
<brian@gaz>
Mon, 21 Dec 2009 07:17:06 +0000
(23:17 -0800)
tests/server.c
patch
|
blob
|
history
diff --git
a/tests/server.c
b/tests/server.c
index cdd22dea85017037a14dff0c6b644f41f428a1b3..68b3d80146416ede910f85a8c963369dc09d8d98 100644
(file)
--- 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);
}