From 6a4743a5b8132c70eb5e4df40a11c5bfdf3bcc23 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 12 Aug 2007 17:40:46 +0000 Subject: Convert rest of STREQ to streq git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@375 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/ppm/ppmtompeg/param.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'converter/ppm') diff --git a/converter/ppm/ppmtompeg/param.c b/converter/ppm/ppmtompeg/param.c index 5ea69ab6..c465dce0 100644 --- a/converter/ppm/ppmtompeg/param.c +++ b/converter/ppm/ppmtompeg/param.c @@ -684,7 +684,7 @@ processParamLine(char const input[], } else if (STRNEQ(input, "BASE_FILE_FORMAT", 16)) { const char * arg = SkipSpacesTabs(&input[16]); SetFileFormat(arg); - if (STRNEQ(arg, "YUV", 3) || STREQ(arg, "Y")) + if (STRNEQ(arg, "YUV", 3) || streq(arg, "Y")) *yuvUsedP = TRUE; optionSeen[OPTION_BASE_FORMAT] = TRUE; } else if (STRNEQ(input, "BSEARCH_ALG", 11)) { @@ -774,7 +774,7 @@ processParamLine(char const input[], } else if (STRNEQ(input, "INPUT_CONVERT", 13)) { strcpy(inputConversion, SkipSpacesTabs(&input[13])); optionSeen[OPTION_INPUT_CONVERT] = TRUE; - } else if (STREQ(input, "INPUT")) { + } else if (streq(input, "INPUT")) { ReadInputFileNames(fpointer, "END_INPUT", inputSourceP->stdinUsed ? NULL : inputSourceP); -- cgit 1.4.1