From: cuz Date: Tue, 5 Mar 2002 21:17:37 +0000 (+0000) Subject: Fixed a typo X-Git-Tag: V2.12.0~2449 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0f911ef8d49ebbe4ea4ab8fc7854f8796a84d29b;p=cc65 Fixed a typo git-svn-id: svn://svn.cc65.org/cc65/trunk@1164 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- 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;