Code tweak to prevent build failure in iOS with XCode7

- added space between literal strings in macro using concatenation
This commit is contained in:
barfowl 2015-06-18 19:47:19 -07:00
parent 0172b9ae5f
commit c08f6a502f

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); \
}