Fixed warning.

* lib/read_data.c: (glibtop_read_data_l): Fixed warning.
This commit is contained in:
Benoît Dejean
2005-03-29 13:18:15 +00:00
parent 59fd67c7e0
commit 29a991160c
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2005-03-29 Benoît Dejean <TazForEver@dlfp.org>
* lib/read_data.c: (glibtop_read_data_l): Fixed warning.
2005-03-25 Benoît Dejean <TazForEver@dlfp.org> 2005-03-25 Benoît Dejean <TazForEver@dlfp.org>
* lib/error.c: (glibtop_error_io_vr), (glibtop_warn_io_vr): * lib/error.c: (glibtop_error_io_vr), (glibtop_warn_io_vr):

View File

@@ -71,7 +71,8 @@ glibtop_read_data_l (glibtop *server)
glibtop_error_io_r (server, glibtop_error_io_r (server,
ngettext ("read %lu byte of data", ngettext ("read %lu byte of data",
"read %lu bytes of data", "read %lu bytes of data",
(unsigned long) size)); (unsigned long) size),
(unsigned long) size);
return ptr; return ptr;
} }