SAGA2: Fix Incorrect Format String for Error Message

This commit is contained in:
D G Turner 2021-09-12 16:53:40 +01:00
parent 0c282ef756
commit 7ce5a5ecc1

View File

@ -572,7 +572,7 @@ static bool openResource(pHResource &hr, const char *fileName) {
}
if (hr == NULL || !hr->_valid) {
error("openResource: Cannot open resource: %s, %s", fileName);
error("openResource: Cannot open resource: %s", fileName);
// return false;
}
return true;