Fixed a bunch of signedness warnings.
2006-04-10 Benoît Dejean <benoit@placenet.org> * lib/open.c: (glibtop_open_l): * lib/read.c: (glibtop_read_l): * lib/write.c: (glibtop_write_l): Fixed a bunch of signedness warnings.
This commit is contained in:
committed by
Benoît Dejean
parent
12502c2673
commit
64fe5d591b
@@ -138,10 +138,10 @@ glibtop_open_l (glibtop *server, const char *program_name,
|
||||
|
||||
sprintf (version, LIBGTOP_VERSION_STRING,
|
||||
LIBGTOP_VERSION, LIBGTOP_SERVER_VERSION,
|
||||
sizeof (glibtop_command),
|
||||
sizeof (glibtop_response),
|
||||
sizeof (glibtop_union),
|
||||
sizeof (glibtop_sysdeps));
|
||||
(guint) sizeof (glibtop_command),
|
||||
(guint) sizeof (glibtop_response),
|
||||
(guint) sizeof (glibtop_union),
|
||||
(guint) sizeof (glibtop_sysdeps));
|
||||
|
||||
size = strlen (version) + 1;
|
||||
|
||||
|
Reference in New Issue
Block a user