From 29a991160c139b6ffc64f633d4294e57811a341a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Tue, 29 Mar 2005 13:18:15 +0000 Subject: [PATCH] Fixed warning. * lib/read_data.c: (glibtop_read_data_l): Fixed warning. --- ChangeLog | 4 ++++ lib/read_data.c | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b594b1b7..e62a370f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2005-03-29 Benoît Dejean + + * lib/read_data.c: (glibtop_read_data_l): Fixed warning. + 2005-03-25 Benoît Dejean * lib/error.c: (glibtop_error_io_vr), (glibtop_warn_io_vr): diff --git a/lib/read_data.c b/lib/read_data.c index 13205c11..a7e337eb 100644 --- a/lib/read_data.c +++ b/lib/read_data.c @@ -71,7 +71,8 @@ glibtop_read_data_l (glibtop *server) glibtop_error_io_r (server, ngettext ("read %lu byte of data", "read %lu bytes of data", - (unsigned long) size)); + (unsigned long) size), + (unsigned long) size); return ptr; }