mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Use std::string for symbol names
This commit is contained in:
@@ -340,7 +340,7 @@ void fstk_RunMacro(char const *macroName, MacroArgs &args) {
|
||||
|
||||
FileStackNode *fileInfo = new (std::nothrow) FileStackNode(NODE_MACRO, "");
|
||||
if (!fileInfo) {
|
||||
error("Failed to alloc file info for \"%s\": %s\n", macro->name, strerror(errno));
|
||||
error("Failed to alloc file info for \"%s\": %s\n", macro->name.c_str(), strerror(errno));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user