Skip to content

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Feb 28, 2024
1 parent 47e79b1 commit 495e99d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2039,7 +2039,7 @@ int IsSupportedFileType(char *path)
if (genCmpFileExt(path, "ELF")) {
return (checkELFheader(path, TYPE_ELF) >= 0);
} else if(genCmpFileExt(path, "IRX")) {
return(checkELFheader(path, TYPE_IRX) >= 0)
return (checkELFheader(path, TYPE_IRX) >= 0);
} else if ((genCmpFileExt(path, "TXT") || genCmpFileExt(path, "CHT") || genCmpFileExt(path, "CFG") || genCmpFileExt(path, "INI") || genCmpFileExt(path, "CNF") ) || (genCmpFileExt(path, "JPG") || genCmpFileExt(path, "JPEG"))) {
return 1;
} else
Expand Down

0 comments on commit 495e99d

Please sign in to comment.