From 92d111cf25855a41beedb2c55bc422b419e9be13 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Thu, 28 Nov 2013 20:46:09 +0100 Subject: Fix 64bit compile warning. --- src/configparser.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configparser.cc b/src/configparser.cc index b0a0e9b..96e701b 100644 --- a/src/configparser.cc +++ b/src/configparser.cc @@ -66,5 +66,5 @@ void ConfigParser::parseError(char *buf, size_t len, std::string error, buffer.append(buf, len); ERR(configparser, "sax parser error '%s' at line %d. " "Buffer: [%d bytes]<%s>\n", - error.c_str(), lineno, len, buffer.c_str()); + error.c_str(), lineno, (int)len, buffer.c_str()); } -- cgit v1.2.3