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