1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 20:29:34 +00:00

Fixed a bug

git-svn-id: svn://svn.cc65.org/cc65/trunk@1145 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-01-15 20:23:35 +00:00
parent a402bd0034
commit 82fb1d9b78

View File

@ -203,7 +203,7 @@ static void DumpFile (const char* Name)
/* Try to open the file */
FILE* F = fopen (Name, "rb");
if (F == 0) {
Warning ("Cannot open `%s': %s", Name, strerror (errno));
Error ("Cannot open `%s': %s", Name, strerror (errno));
}
/* Read the magic word */