This commit is contained in:
tTh 2024-08-20 16:52:16 +02:00
parent 4a3408633d
commit b372e0428d

View File

@ -57,7 +57,7 @@ int foo, len_nom, len_ext;
fprintf(stderr, "type_du_fichier(%s)\n", nom); fprintf(stderr, "type_du_fichier(%s)\n", nom);
#endif #endif
len_nom = strlen(nom); len_nom = strlen(nom);
for (foo=0; foo<NBR_TYPES; foo++) { for (foo=0; foo<(int)NBR_TYPES; foo++) {
len_ext = strlen(types_de_fichiers[foo].extension); len_ext = strlen(types_de_fichiers[foo].extension);
if ( (len_nom > len_ext) && if ( (len_nom > len_ext) &&
!strcmp(nom+(len_nom-len_ext), types_de_fichiers[foo].extension) ) { !strcmp(nom+(len_nom-len_ext), types_de_fichiers[foo].extension) ) {
@ -80,7 +80,7 @@ int foo;
if (type == SON_UNKNOW) return "unknow"; if (type == SON_UNKNOW) return "unknow";
for (foo=0; foo<NBR_TYPES; foo++) { for (foo=0; foo<(int)NBR_TYPES; foo++) {
if (type==types_de_fichiers[foo].numtype) if (type==types_de_fichiers[foo].numtype)
return (types_de_fichiers[foo].extension)+1; return (types_de_fichiers[foo].extension)+1;
} }
@ -93,7 +93,7 @@ int foo;
if (type == SON_UNKNOW) return "unknow"; if (type == SON_UNKNOW) return "unknow";
for (foo=0; foo<NBR_TYPES; foo++) { for (foo=0; foo<(int)NBR_TYPES; foo++) {
if (type==types_de_fichiers[foo].numtype) if (type==types_de_fichiers[foo].numtype)
return (types_de_fichiers[foo].descr); return (types_de_fichiers[foo].descr);
} }
@ -175,7 +175,6 @@ int foo;
WINDOW *popup; WINDOW *popup;
char chaine[100]; char chaine[100];
struct stat st; struct stat st;
long magicbits;
/* /*
* ncurses initial stuff * ncurses initial stuff