Bonjour,
j'ai le warning suivant et je n'arrive pas à m'en défaire:
warning: passing argument 5 of 'bsearch' from incompatible pointer type
voici la ligne qui pose problème:
bsearch(id, textInformationFrame, sizeof(textInformationFrame)/sizeof(textInformationFrame[0]), sizeof(textInformationFrame[0]), strcmp);
Si je comprends bien, c'est strcmp qui pose problème, mais pourquoi?
Sinon, comment se débarrasser de ce warning (ne plus le voir, avec un pragma par exemple...)?
NOTE:
fichier c compilé avec gcc (version 3 ou 4, je sais plus):
gcc -g -Wall -c file.c
Merci pour toute réponse ou tout début de piste.