Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My default char type is "unsigned char" as set in the gcc option (-funsigned-char gcc). So arguably I can use "char" when I need "unsigned char" in the code. But i am getting warning for conversion between (char*) and (unsigned char* or signed char*):

"error: pointer targets in passing argument 1 of 'test2' differ in signedness" .

How can I avoid warning when I pass unsigned char* variable to char* (knowing that my syetem has default unsigned char as set by compiler option)?

static void test2(char* a)      //char is unsigned by deafult as set by -funsigned-char gcc option
{
}

void    test1(void)
{
        // This passes, but if i change it to unsigned char (or 'signed char') it fails   
        // I dont want it to fail for "unsigned char c" since default char is unsigned.
        char    c = 65; 
        test2(&c);
}
share|improve this question
Missed a point, I dont need a cast in source code, since I have to edit a huge code base at many places. – Lunar Mushrooms Nov 15 '12 at 15:30
Your example code compiles without any warnings, with or without -funsigned-char using gcc (Debian 4.4.5-8) 4.4.5. – alk Nov 15 '12 at 15:31
Yes , it compiles with older compiler version, but when I used with new version gcc compiler, unsigned char c = 65 will give error at test2(&c) – Lunar Mushrooms Nov 15 '12 at 15:33
1  
The switch makes char unsigned, it doesn't make it unsigned char! The types char, signed char, and unsigned char are still different types. – Bo Persson Nov 15 '12 at 19:11
@BoPersson Thanks – Lunar Mushrooms Nov 16 '12 at 12:41

3 Answers

up vote 2 down vote accepted

The switches -funsigned-char and -fsigned-char do not refer to char *.

You might use -Wno-pointer-signto switch off the warning you receive.

share|improve this answer

Use a cast:

char c = 65;   // weird magic :-(

test2((unsigned char *)(&c));

All char types are layout compatible, and casting their pointers does not constitute type punning or violate aliasing rules, so you can do this freely.

share|improve this answer
I dont need a cast in source code, since I have to edit a huge code base at many places (my code was compiling with old compiler , but new version started to give me warnings). – Lunar Mushrooms Nov 15 '12 at 15:32

Finally I got an answer :

-Wpointer-sign is implied by -Wall and by -pedantic . To avoid warning use -Wno-pointer-sign

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.