use the correct event handler in j2k_to_image.c

This commit is contained in:
Mickael Savinaud 2012-05-14 17:47:10 +00:00
parent 717a7dbfde
commit ee17910ec5
1 changed files with 4 additions and 4 deletions

View File

@ -639,15 +639,15 @@ int parse_DA_values( char* inArg, unsigned int *DA_x0, unsigned int *DA_y0, unsi
sample error callback expecting a FILE* client object sample error callback expecting a FILE* client object
*/ */
void error_callback(const char *msg, void *client_data) { void error_callback(const char *msg, void *client_data) {
FILE *stream = (FILE*)client_data; (void)client_data;
fprintf(stream, "[ERROR] %s", msg); fprintf(stdout, "[ERROR] %s", msg);
} }
/** /**
sample warning callback expecting a FILE* client object sample warning callback expecting a FILE* client object
*/ */
void warning_callback(const char *msg, void *client_data) { void warning_callback(const char *msg, void *client_data) {
FILE *stream = (FILE*)client_data; (void)client_data;
fprintf(stream, "[WARNING] %s", msg); fprintf(stdout, "[WARNING] %s", msg);
} }
/** /**
sample debug callback expecting no client object sample debug callback expecting no client object