From 67d55e71ebc021cade642ad0a0f58d8d033e971a Mon Sep 17 00:00:00 2001
From: cuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Date: Sun, 14 Sep 2003 19:29:56 +0000
Subject: [PATCH] Fixed a typo

git-svn-id: svn://svn.cc65.org/cc65/trunk@2440 b7a2c559-68d2-44c3-8de9-860c34a00d81
---
 src/common/segdefs.c | 2 +-
 src/common/segdefs.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

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 */