mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-21 10:42:07 +00:00
Add forgotten file name argument to err
This commit is contained in:
@@ -429,7 +429,7 @@ void obj_ReadFile(char const *fileName)
|
|||||||
section->symbols = malloc(sizeof(*section->symbols)
|
section->symbols = malloc(sizeof(*section->symbols)
|
||||||
* nbSymPerSect[i]);
|
* nbSymPerSect[i]);
|
||||||
if (!section->symbols)
|
if (!section->symbols)
|
||||||
err(1, "%s: Couldn't link to symbols");
|
err(1, "%s: Couldn't link to symbols", fileName);
|
||||||
} else {
|
} else {
|
||||||
section->symbols = NULL;
|
section->symbols = NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user