mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2025-01-09 00:00:18 +00:00
Code tweak to prevent build failure in iOS with XCode7
- added space between literal strings in macro using concatenation
This commit is contained in:
parent
0172b9ae5f
commit
c08f6a502f
@ -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); \
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user