mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2024-11-27 14:00:10 +00:00
Merge pull request #651 from barfowl/string_concat
Code tweak to prevent build failure in iOS with XCode7
This commit is contained in:
commit
7d801408a7
@ -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