From 0f911ef8d49ebbe4ea4ab8fc7854f8796a84d29b Mon Sep 17 00:00:00 2001 From: cuz Date: Tue, 5 Mar 2002 21:17:37 +0000 Subject: [PATCH] Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@1164 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/typecmp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cc65/typecmp.h b/src/cc65/typecmp.h index 584bd2c44..83ac7bf64 100644 --- a/src/cc65/typecmp.h +++ b/src/cc65/typecmp.h @@ -54,7 +54,7 @@ typedef enum { TC_QUAL_DIFF, /* Types differ in qualifier of pointer */ TC_SIGN_DIFF, /* Signedness differs */ TC_COMPATIBLE = TC_SIGN_DIFF, /* Compatible types */ - TC_STRICT_COMPATIBLE, /* Struct compatibility */ + TC_STRICT_COMPATIBLE, /* Strict compatibility */ TC_EQUAL, /* Types are equal */ TC_IDENTICAL /* Types are identical */ } typecmp_t;