summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrustyx <me@rustyx.org>2016-01-30 12:38:33 (GMT)
committerJason Evans <jasone@canonware.com>2016-02-20 18:50:24 (GMT)
commitbc49863fb5c59d5a0ff63845464d901ef00c7845 (patch)
treeb28a3d6dd3f38389402003d3dc83fecee0d141a0
parent46e0b2301c0e0ee71f5714d0cdf320ba2d027271 (diff)
downloadjemalloc-bc49863fb5c59d5a0ff63845464d901ef00c7845.zip
jemalloc-bc49863fb5c59d5a0ff63845464d901ef00c7845.tar.gz
jemalloc-bc49863fb5c59d5a0ff63845464d901ef00c7845.tar.bz2
Fix error "+ 2")syntax error: invalid arithmetic operator (error token is " in Cygwin x64
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 9a489d9..3ae468a 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;