From: uz Date: Fri, 28 Jan 2011 16:33:04 +0000 (+0000) Subject: Fixed an error in the macro versions of the inline functions. X-Git-Tag: V2.13.3~512 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d5109f63195be37a272133cebe679774535c2e8c;p=cc65 Fixed an error in the macro versions of the inline functions. git-svn-id: svn://svn.cc65.org/cc65/trunk@4948 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/ld65/fragment.h b/src/ld65/fragment.h index b3f406ef6..847f0ac50 100644 --- a/src/ld65/fragment.h +++ b/src/ld65/fragment.h @@ -97,7 +97,7 @@ INLINE const char* GetFragmentSourceName (const Fragment* F) return GetSourceNameFromList (&F->LineInfos); } #else -# define GetFragmentSourceName(LI) GetSourceNameFromList (&(F)->LineInfos) +# define GetFragmentSourceName(F) GetSourceNameFromList (&(F)->LineInfos) #endif #if defined(HAVE_INLINE) @@ -107,7 +107,7 @@ INLINE unsigned long GetFragmentSourceLine (const Fragment* F) return GetSourceLineFromList (&F->LineInfos); } #else -# define GetFragmentSourceLine(LI) GetSourceLineFromList (&(F)->LineInfos) +# define GetFragmentSourceLine(F) GetSourceLineFromList (&(F)->LineInfos) #endif