From 3f55d507dd508d5369b5592a05f8a82cf764296c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Wed, 3 Oct 2007 19:29:28 +0000 Subject: [PATCH] Fixed arguments type. svn path=/trunk/; revision=2671 --- lib/open.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/open.c b/lib/open.c index 9825bc63..9728972a 100644 --- a/lib/open.c +++ b/lib/open.c @@ -148,7 +148,7 @@ glibtop_open_l (glibtop *server, const char *program_name, if (nbytes != size) glibtop_error_r (server, "Requested %u bytes but got %u.", - size, nbytes); + (unsigned)size, (unsigned)nbytes); glibtop_read_l (server, nbytes, buffer);