From 238284b846aeadf5be154c137502f58002ca627a Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Wed, 4 Aug 2004 04:44:27 +0000 Subject: [PATCH] Fixed typo. --- src/xpdev/truncsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xpdev/truncsp.c b/src/xpdev/truncsp.c index f0c6ad9be4..880f168871 100644 --- a/src/xpdev/truncsp.c +++ b/src/xpdev/truncsp.c @@ -43,7 +43,7 @@ static char* truncsp(char* str) unsigned c; c=strlen(str); - while(c && (str[c-1]==' ' || str[c-1]=='\t' || str[c-1]=='\r' || str[c-1]=='\n') c--; + while(c && (str[c-1]==' ' || str[c-1]=='\t' || str[c-1]=='\r' || str[c-1]=='\n')) c--; str[c]=0; return(str); -- GitLab