aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-10-30 06:11:39 +0000
committerTatsuya Kinoshita <tats@vega.ocn.ne.jp>2011-10-30 06:11:39 +0000
commit301a9799615268cd517793ce1f368ef95df14410 (patch)
tree53ce62d04dee8ffee4f6a032a828a36a55cde68a /configure
parentAdding upstream version 0.5.3 (diff)
downloadw3m-301a9799615268cd517793ce1f368ef95df14410.tar.gz
w3m-301a9799615268cd517793ce1f368ef95df14410.zip
Appease gcc -Werror=format-security. (closes: #646321)
Patch from 0.5.3-3ubuntu1 to appease gcc -Werror=format-security, provided by Colin Watson.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 4c1bc06..2e37bb1 100755
--- a/configure
+++ b/configure
@@ -8986,7 +8986,7 @@ extern char *sys_errlist[];
int
main ()
{
-printf(sys_errlist[0]);
+printf("%s", sys_errlist[0]);
;
return 0;
}