From: Francois-Olivier Devaux Date: Fri, 19 Feb 2010 13:37:27 +0000 (+0000) Subject: Applied changes to jp3d_to_volume.c that didn't pass in previous revision (rev545) X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=1027d050641bc1367b8ed5b3b81b437eec5240e2;p=openjpeg.git Applied changes to jp3d_to_volume.c that didn't pass in previous revision (rev545) --- diff --git a/codec/jp3d_to_volume.c b/codec/jp3d_to_volume.c index caa275bf..4086b20d 100755 --- a/codec/jp3d_to_volume.c +++ b/codec/jp3d_to_volume.c @@ -197,7 +197,7 @@ int get_file_format(char *filename) { static const char *extension[] = {"pgx", "bin", "j3d", "jp3d", "j2k", "img"}; static const int format[] = { PGX_DFMT, BIN_DFMT, J3D_CFMT, J3D_CFMT, J2K_CFMT, IMG_DFMT}; char * ext = strrchr(filename, '.') + 1; - for(i = 0; i < sizeof(format); i++) { + for(i = 0; i < sizeof(format) / sizeof(format[0]); i++) { if(strnicmp(ext, extension[i], 3) == 0) { return format[i]; }