From: uz Date: Wed, 28 Dec 2011 17:09:26 +0000 (+0000) Subject: Order of table entries was wrong, so bsearch failed. X-Git-Tag: V2.13.3~122 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=70a3bcb0df2afc4ccd9c60e000a2402254fa1240;p=cc65 Order of table entries was wrong, so bsearch failed. git-svn-id: svn://svn.cc65.org/cc65/trunk@5342 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/target.c b/src/common/target.c index 2c553fbaa..475f22797 100644 --- a/src/common/target.c +++ b/src/common/target.c @@ -122,8 +122,8 @@ struct TargetEntry { * Allows mupltiple entries for one target id (target name aliases). */ static const TargetEntry TargetMap[] = { - { "apple2enh", TGT_APPLE2ENH }, { "apple2", TGT_APPLE2 }, + { "apple2enh", TGT_APPLE2ENH }, { "atari", TGT_ATARI }, { "atmos", TGT_ATMOS }, { "bbc", TGT_BBC },