From: uz Date: Sun, 30 Jan 2011 14:51:50 +0000 (+0000) Subject: Fixed a bug. X-Git-Tag: V2.13.3~501 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=405cb07e7a8c13130cc6120565be520a75a4a69e;p=cc65 Fixed a bug. git-svn-id: svn://svn.cc65.org/cc65/trunk@4959 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/lidefs.h b/src/common/lidefs.h index 4bdd51184..ac45dd234 100644 --- a/src/common/lidefs.h +++ b/src/common/lidefs.h @@ -54,7 +54,7 @@ /* Extract type and count from a type field */ #define LI_GET_TYPE(T) ((T) & 0x03U) -#define LI_GET_COUNT(T) ((unsigned)(T) >> 2); +#define LI_GET_COUNT(T) ((unsigned)(T) >> 2)