diff options
| author | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-09-02 08:34:38 +0000 |
|---|---|---|
| committer | Mickael Savinaud <savmickael@users.noreply.github.com> | 2011-09-02 08:34:38 +0000 |
| commit | bc7c3e44d559b7772fe5e76d04084fb13c292a91 (patch) | |
| tree | 79afd0daeb32405af7d9382d503ba0893ffbd744 | |
| parent | 480ca88b6807122839d0e1285aaf0adbe9b01313 (diff) | |
fixed windows nighlty crash about one missing opj_getopt() (and warning with other platform)
| -rw-r--r-- | CHANGES | 3 | ||||
| -rw-r--r-- | tests/compareRAWimages.c | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,9 @@ What's New for OpenJPEG ! : changed + : added +September 2, 2011 +* [mickael] fixed windows nighlty crash about one missing opj_getopt() (and warning with other platform) + September 1st, 2011 ! [antonin] renamed getopt.{c/h} to opj_getopt.{c/h} and forced the use of these files rather than the system ones. This fixed issue 78. Credit to Winfried. diff --git a/tests/compareRAWimages.c b/tests/compareRAWimages.c index 24738873..fb037c24 100644 --- a/tests/compareRAWimages.c +++ b/tests/compareRAWimages.c @@ -74,7 +74,7 @@ int parse_cmdline_cmp(int argc, char **argv, test_cmp_parameters* param) param->test_filename = NULL; opj_opterr = 0; - while ((c = getopt(argc, argv, optlist)) != -1) + while ((c = opj_getopt(argc, argv, optlist)) != -1) switch (c) { case 'b': |
