mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +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:
parent
a402bd0034
commit
82fb1d9b78
@ -203,7 +203,7 @@ static void DumpFile (const char* Name)
|
|||||||
/* Try to open the file */
|
/* Try to open the file */
|
||||||
FILE* F = fopen (Name, "rb");
|
FILE* F = fopen (Name, "rb");
|
||||||
if (F == 0) {
|
if (F == 0) {
|
||||||
Warning ("Cannot open `%s': %s", Name, strerror (errno));
|
Error ("Cannot open `%s': %s", Name, strerror (errno));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Read the magic word */
|
/* Read the magic word */
|
||||||
|
Loading…
Reference in New Issue
Block a user