From bc49863fb5c59d5a0ff63845464d901ef00c7845 Mon Sep 17 00:00:00 2001 From: rustyx Date: Sat, 30 Jan 2016 13:38:33 +0100 Subject: [PATCH] Fix error "+ 2")syntax error: invalid arithmetic operator (error token is " in Cygwin x64 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 9a489d98..3ae468ab 100644 --- a/configure.ac +++ b/configure.ac @@ -1116,7 +1116,7 @@ if test "x$LG_PAGE" = "xdetect"; then if (f == NULL) { return 1; } - fprintf(f, "%d\n", result); + fprintf(f, "%d", result); fclose(f); return 0;