From b55c290823cbb22b4c9ae91b4bcd80aa343f71cf Mon Sep 17 00:00:00 2001 From: uz Date: Fri, 9 Mar 2012 11:48:13 +0000 Subject: [PATCH] Added a dummy return to fix a watcom warning. git-svn-id: svn://svn.cc65.org/cc65/trunk@5585 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/sp65/bitmap.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sp65/bitmap.c b/src/sp65/bitmap.c index c8c908833..865eab272 100644 --- a/src/sp65/bitmap.c +++ b/src/sp65/bitmap.c @@ -190,7 +190,9 @@ unsigned GetBitmapColors (const Bitmap* B) case bmRGB: case bmRGBA: return (1U << 24); default: Internal ("Unknown bitmap type %u", B->Type); - } + } + /* NOTREACHED */ + return 0; } -- 2.39.5