From: cuz Date: Fri, 30 May 2003 10:25:55 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~1538 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3629c9ac7ce203c46b5228906cc93d5c94bb5636;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@2180 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/common/searchpath.c b/src/common/searchpath.c index 24b5ec3bb..e8883f63c 100644 --- a/src/common/searchpath.c +++ b/src/common/searchpath.c @@ -165,7 +165,6 @@ void AddSearchPath (const char* NewPath, unsigned Where) if (Where & Mask) { SearchPaths[I] = Add (SearchPaths[I], NewPath); } - ++I; } } } @@ -195,7 +194,6 @@ char* SearchFile (const char* Name, unsigned Where) return Path; } } - ++I; } return 0; }