This is an example:
#include <stdbool.h>
void foo(bool b){};
void bar(bool b) {foo(b);}
int main() {
bar(false);
}
I compile with:
gcc -Wtraditional-conversion test.c
I get these warnings:
test.c: In function 'bar':
test.c:4: warning: passing argument 1 of 'foo' with different width due to prototype
test.c: In function 'main':
test.c:7: warning: passing argument 1 of 'bar' with different width due to prototype
Why do these warnings occur? As far as I can see the arguments are all the same type, so should be the same width. What is -Wtraditional-conversion doing to cause these warnings in this very simple piece of code?
I started to get these errors when I switched from using my own typedef of bool to the stdbool.h def.
My original def was:
typedef enum {false, true} bool;
-Wtraditional-conversionmeans Warn if a prototype causes a type conversion that is different from what would happen to the same argument in the absence of a prototype. You seem to be using C99, so why do you need the warning ? – cnicutar May 14 '12 at 10:06