From: cuz Date: Tue, 15 Jan 2002 20:23:35 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~2466 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=82fb1d9b780e4f107ca4f2c26f648443aa0f0dc5;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@1145 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/od65/main.c b/src/od65/main.c index 0c9e22148..d3171f776 100644 --- a/src/od65/main.c +++ b/src/od65/main.c @@ -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 */