* Samuel Mimram <[EMAIL PROTECTED]> [2006-05-15 20:20]: > $ gcc -Werror -Wall test.c -o test > cc1: warnings being treated as errors > test.c: In function 'main': > test.c:6: warning: the address of 'hwparams', will always evaluate as 'true'
> Should I reassign this to gcc, or is it a bug in linphone (should I > remove the -Werror)? I'll try to find out whether it's the former, but in the case it's the latter you could just use: -Werror -Wall -Wno-always-true which will only ignore this particular warning. -- Martin Michlmayr http://www.cyrius.com/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

