1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-27 09:33:42 +00:00

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
This commit is contained in:
uz 2011-01-28 16:33:04 +00:00
parent 81c90667bf
commit d5109f6319

View File

@ -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