From 659318ddc529635b940b130171407d0032627798 Mon Sep 17 00:00:00 2001 From: jesusc Date: Thu, 17 Jul 2003 16:27:40 +0000 Subject: [PATCH] z80 library paths may contain '.' now (better fix) git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2748 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- link/z80/lklibr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/link/z80/lklibr.c b/link/z80/lklibr.c index dac07b42..1c8c5cab 100644 --- a/link/z80/lklibr.c +++ b/link/z80/lklibr.c @@ -658,7 +658,7 @@ char *name; } else { strcat(str,relfil); } - if(strchr(str,FSEPX) == NULL) { + if(strchr(relfil,FSEPX) == NULL) { #ifdef SDK sprintf(&str[strlen(str)], "%co", FSEPX); #else /* SDK */ -- 2.47.2