Merge pull request #651 from barfowl/string_concat

Code tweak to prevent build failure in iOS with XCode7
This commit is contained in:
George ElKoura 2015-06-18 22:19:17 -07:00
commit 7d801408a7

View File

@ -152,7 +152,7 @@ Level::getTopologyErrorString(TopologyError errCode) {
if (callback) { \
char const * errStr = getTopologyErrorString(code); \
char msg[1024]; \
snprintf(msg, 1024, "%s - "format, errStr, ##__VA_ARGS__); \
snprintf(msg, 1024, "%s - " format, errStr, ##__VA_ARGS__); \
callback(code, msg, clientData); \
}