1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00

Fixed a typo

git-svn-id: svn://svn.cc65.org/cc65/trunk@2440 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-09-14 19:29:56 +00:00
parent 3604512985
commit 67d55e71eb
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ SegDef* DupSegDef (const SegDef* Def)
const char* SetTypeToStr (unsigned char Type)
const char* SegTypeToStr (unsigned char Type)
/* Map a segment type into a string */
{
switch (Type) {

View File

@ -77,7 +77,7 @@ void FreeSegDef (SegDef* D);
SegDef* DupSegDef (const SegDef* D);
/* Duplicate a segment definition and return it */
const char* SetTypeToStr (unsigned char Type);
const char* SegTypeToStr (unsigned char Type);
/* Map a segment type into a string */