summaryrefslogtreecommitdiff
path: root/tests/test_tile_decoder.c
diff options
context:
space:
mode:
authorMathieu Malaterre <mathieu.malaterre@gmail.com>2014-02-26 14:00:21 +0000
committerMathieu Malaterre <mathieu.malaterre@gmail.com>2014-02-26 14:00:21 +0000
commit7f277fea948958f419f1930da97fa0ebd16953b7 (patch)
tree7c5f76bd75ec16cf366dd2f341e158e3fcb324b1 /tests/test_tile_decoder.c
parent52440cc2e61aa3ec363fe8739b426250e42243bc (diff)
[trunk] Remove some simple warnings about cast, and unused functions
Diffstat (limited to 'tests/test_tile_decoder.c')
-rw-r--r--tests/test_tile_decoder.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/tests/test_tile_decoder.c b/tests/test_tile_decoder.c
index 5a53beea..7560af5f 100644
--- a/tests/test_tile_decoder.c
+++ b/tests/test_tile_decoder.c
@@ -99,7 +99,7 @@ static int infile_format(const char *fname)
return -1;
memset(buf, 0, 12);
- l_nb_read = fread(buf, 1, 12, reader);
+ l_nb_read = (unsigned int)fread(buf, 1, 12, reader);
fclose(reader);
if (l_nb_read != 12)
return -1;
@@ -137,20 +137,6 @@ static int infile_format(const char *fname)
/* -------------------------------------------------------------------------- */
/**
- sample error callback expecting a FILE* client object
- */
-static void error_callback_file(const char *msg, void *client_data) {
- FILE *stream = (FILE*)client_data;
- fprintf(stream, "[ERROR] %s", msg);
-}
-/**
- sample warning callback expecting a FILE* client object
- */
-static void warning_callback_file(const char *msg, void *client_data) {
- FILE *stream = (FILE*)client_data;
- fprintf(stream, "[WARNING] %s", msg);
-}
-/**
sample error debug callback expecting no client object
*/
static void error_callback(const char *msg, void *client_data) {