Appease gcc -Werror=format-security. (closes: #646321)

Patch from 0.5.3-3ubuntu1 to appease gcc -Werror=format-security,
provided by Colin Watson.
This commit is contained in:
Tatsuya Kinoshita
2011-10-30 15:11:39 +09:00
parent 5397d09e58
commit 301a979961
3 changed files with 3 additions and 3 deletions

2
configure vendored
View File

@@ -8986,7 +8986,7 @@ extern char *sys_errlist[];
int
main ()
{
printf(sys_errlist[0]);
printf("%s", sys_errlist[0]);
;
return 0;
}