Yamada Ken Takeshi wrote:
I have an error for a week and cannot make buildworld.
Where can I find "panic" other than real panic?
===> sbin/gbde
: : : :
cc -O -pipe -mcpu=pentiumpro -I/usr/src/sbin/gbde/../../sys -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c template.c
cc1: warnings being treated as errors
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c: In function `rijndael_padEncrypt':
/usr/src/sys/crypto/rijndael/rijndael-api-fst.c:222: warning: implicit declaration of function `panic'
*** Error code 1
This is taken from my rijndael-api-fst.c:
for (i = numBlocks; i > 0; i--) {
rijndaelEncrypt(input, outBuffer, key->keySched, key->ROUNDS);
input += 16; /* this is line 222 */
outBuffer += 1;
}
I can't see how line 222 includes an implicit declaration of 'panic'.
Is your file different?
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message