From: cuz Date: Sun, 14 Sep 2003 19:29:56 +0000 (+0000) Subject: Fixed a typo X-Git-Tag: V2.12.0~1331 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=67d55e71ebc021cade642ad0a0f58d8d033e971a;p=cc65 Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@2440 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/segdefs.c b/src/common/segdefs.c index cf289104f..0473ff224 100644 --- a/src/common/segdefs.c +++ b/src/common/segdefs.c @@ -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) { diff --git a/src/common/segdefs.h b/src/common/segdefs.h index dd7dfbe7d..eb4fcfbb9 100644 --- a/src/common/segdefs.h +++ b/src/common/segdefs.h @@ -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 */