Applied changes to jp3d_to_volume.c that didn't pass in previous revision (rev545)
This commit is contained in:
parent
cb4702b4c5
commit
34c485169e
|
@ -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];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue