Browse Source

* minor warning fix

tags/v0.99.beta14
Sam Hocevar sam 17 years ago
parent
commit
1f4a8ef023
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      test/input.c

+ 3
- 2
test/input.c View File

@@ -17,9 +17,10 @@


#if !defined(__KERNEL__) #if !defined(__KERNEL__)
# if defined(HAVE_INTTYPES_H) # if defined(HAVE_INTTYPES_H)
# include <inttypes.h>
# include <inttypes.h>
# endif # endif
# include <string.h> # include <string.h>
# include <stdio.h>
#endif #endif


#include "cucul.h" #include "cucul.h"
@@ -44,7 +45,7 @@ int main(int argc, char *argv[])
cv = cucul_create_canvas(0, 0); cv = cucul_create_canvas(0, 0);
if(cv == NULL) if(cv == NULL)
{ {
printf("Can't created canvas\n");
printf("Can't create canvas\n");
return -1; return -1;
} }
dp = caca_create_display(cv); dp = caca_create_display(cv);


Loading…
Cancel
Save