From d3a5144876c052c721c19f85f8275174630f9461 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 26 Aug 2007 21:44:03 +0000 Subject: Replace macros with inline functions git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@386 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- editor/ppmcolormask.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editor/ppmcolormask.c') diff --git a/editor/ppmcolormask.c b/editor/ppmcolormask.c index 57e5c825..eed64c19 100644 --- a/editor/ppmcolormask.c +++ b/editor/ppmcolormask.c @@ -60,7 +60,7 @@ parseColorOpt(const char * const colorOpt, const char * token; token = strsepN(&cursor, ","); if (token) { - if (STRNEQ(token, "bk:", 3)) { + if (strneq(token, "bk:", 3)) { cmdlineP->maskColor[colorCount].matchType = MATCH_BK; cmdlineP->maskColor[colorCount].u.bkColor = ppm_bk_color_from_name(&token[3]); -- cgit 1.4.1