From 3629c9ac7ce203c46b5228906cc93d5c94bb5636 Mon Sep 17 00:00:00 2001 From: cuz Date: Fri, 30 May 2003 10:25:55 +0000 Subject: [PATCH] Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@2180 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/common/searchpath.c | 2 -- 1 file changed, 2 deletions(-) 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; } -- 2.39.5