changeset 202:4b93442bd411

Silence a warning under Solaris and few other systems by using th_isspace() wrapper instead of isspace().
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 20 Nov 2010 12:15:13 +0200
parents f7b571debd81
children e7538539de7f
files nnchat.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/nnchat.c	Sat Nov 20 12:14:34 2010 +0200
+++ b/nnchat.c	Sat Nov 20 12:15:13 2010 +0200
@@ -584,7 +584,7 @@
 
 char * trimLeft(char *buf)
 {
-    while (*buf != 0 && isspace(*buf)) buf++;
+    while (*buf != 0 && th_isspace(*buf)) buf++;
     return buf;
 }