From 301a9799615268cd517793ce1f368ef95df14410 Mon Sep 17 00:00:00 2001 From: Tatsuya Kinoshita Date: Sun, 30 Oct 2011 15:11:39 +0900 Subject: Appease gcc -Werror=format-security. (closes: #646321) Patch from 0.5.3-3ubuntu1 to appease gcc -Werror=format-security, provided by Colin Watson. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') 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; } -- cgit v1.2.3