From 1f4a8ef023790190cdd8b1f99c5a1c80e9861b4b Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 16 Jul 2007 23:51:49 +0000 Subject: [PATCH] * minor warning fix --- test/input.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/input.c b/test/input.c index 65803e1..229e7c0 100644 --- a/test/input.c +++ b/test/input.c @@ -17,9 +17,10 @@ #if !defined(__KERNEL__) # if defined(HAVE_INTTYPES_H) -# include +# include # endif # include +# include #endif #include "cucul.h" @@ -44,7 +45,7 @@ int main(int argc, char *argv[]) cv = cucul_create_canvas(0, 0); if(cv == NULL) { - printf("Can't created canvas\n"); + printf("Can't create canvas\n"); return -1; } dp = caca_create_display(cv);