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 --- lib/util/nstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util/nstring.c') diff --git a/lib/util/nstring.c b/lib/util/nstring.c index 58500547..1aec2b9d 100644 --- a/lib/util/nstring.c +++ b/lib/util/nstring.c @@ -890,7 +890,7 @@ memmemN(const char * const haystack, const char * p; for (p = haystack; p <= haystack + haystacklen - needlelen; ++p) - if (MEMEQ(p, needle, needlelen)) + if (memeq(p, needle, needlelen)) return p; return NULL; -- cgit 1.4.1