Add forgotten file name argument to err

This commit is contained in:
ISSOtm
2020-02-24 16:23:39 +01:00
parent 3b62bd0bce
commit 702075eba6

View File

@@ -429,7 +429,7 @@ void obj_ReadFile(char const *fileName)
section->symbols = malloc(sizeof(*section->symbols)
* nbSymPerSect[i]);
if (!section->symbols)
err(1, "%s: Couldn't link to symbols");
err(1, "%s: Couldn't link to symbols", fileName);
} else {
section->symbols = NULL;
}