]> git.sur5r.net Git - cc65/commitdiff
Fixed a typo
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 14 Sep 2003 19:29:56 +0000 (19:29 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sun, 14 Sep 2003 19:29:56 +0000 (19:29 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2440 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/common/segdefs.c
src/common/segdefs.h

index cf289104f8e0c286e190edd4517b074daf888cbd..0473ff224b70cd2a3ed56a0c59f61f700ab2c98b 100644 (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) {
index dd7dfbe7d926b10e4769eb7372cd87eef719cbf7..eb4fcfbb9fc1f251bfbdbe95cb8fa763d6506ab7 100644 (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 */