# HG changeset patch # User Matti Hamalainen # Date 1290248113 -7200 # Node ID 4b93442bd4117b8f4a43e28386bfb0d17434fc63 # Parent f7b571debd8105dd6a6c48d7c2230ddd7e44ef8b Silence a warning under Solaris and few other systems by using th_isspace() wrapper instead of isspace(). diff -r f7b571debd81 -r 4b93442bd411 nnchat.c --- 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; }