Re: [PATCH] 2.5.21 kill warnings 4/19

Andrew Morton (akpm@zip.com.au)
Mon, 10 Jun 2002 13:14:33 -0700


Tom Rini wrote:
>
> ...
> Nope.
> $ gcc-3.1 -Wall -o foo foo.c
> foo.c: In function `main':
> foo.c:8: parse error before string constant
>
> And line 8 is:
> printf(__FUNCTION__ " encountered argument ");

That's OK. We need to convert all those to

printf("%s encountered argument ", __FUNCTION__);

anyway. That seems to be happening pretty quickly.

-
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/