diff options
| author | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2006-12-04 14:52:34 +0000 |
|---|---|---|
| committer | Francois-Olivier Devaux <fodevaux@users.noreply.github.com> | 2006-12-04 14:52:34 +0000 |
| commit | 0ace960ea5c64faafa642cc54b73e83095a6544b (patch) | |
| tree | 5711ca24ed6b6db2e0c047048a8917a8edb5a9c1 | |
| parent | b420c330b2adda299fdcb6fd1c22d000190eb9c0 (diff) | |
Corrected incorrect fprintf formatting
| -rw-r--r-- | codec/convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/codec/convert.c b/codec/convert.c index db1e6740..7b644da8 100644 --- a/codec/convert.c +++ b/codec/convert.c @@ -122,7 +122,7 @@ opj_image_t* bmptoimage(const char *filename, opj_cparameters_t *parameters) { IN = fopen(filename, "rb"); if (!IN) { - fprintf(stderr, "\033[0;33mFailed to open %s for reading !!\033[0;39m\n", filename); + fprintf(stderr, "Failed to open %s for reading !!\n", filename); return 0; } @@ -859,7 +859,7 @@ opj_image_t* pnmtoimage(const char *filename, opj_cparameters_t *parameters) { f = fopen(filename, "rb"); if (!f) { - fprintf(stderr, "\033[0;33mFailed to open %s for reading !!\033[0;39m\n", filename); + fprintf(stderr, "Failed to open %s for reading !!\n", filename); return 0; } |
