From: uz Date: Fri, 9 Mar 2012 11:48:13 +0000 (+0000) Subject: Added a dummy return to fix a watcom warning. X-Git-Tag: V2.14~478 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b55c290823cbb22b4c9ae91b4bcd80aa343f71cf;p=cc65 Added a dummy return to fix a watcom warning. git-svn-id: svn://svn.cc65.org/cc65/trunk@5585 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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; }