about summary refs log tree commit diff
path: root/converter/pgm/lispmtopgm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-09-26 20:20:52 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-09-26 20:20:52 +0000
commit2087fc45bd38ac1dd3b90789c5bfb94f2dbbad94 (patch)
treeb062862164ab41e78b5efc436330db65cb2887f9 /converter/pgm/lispmtopgm.c
parent68256547a054109f09c55e2e913df2dfdd2144ff (diff)
downloadnetpbm-mirror-2087fc45bd38ac1dd3b90789c5bfb94f2dbbad94.tar.gz
netpbm-mirror-2087fc45bd38ac1dd3b90789c5bfb94f2dbbad94.tar.xz
netpbm-mirror-2087fc45bd38ac1dd3b90789c5bfb94f2dbbad94.zip
Rebase 'advanced' to 10.40.00
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@416 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/pgm/lispmtopgm.c')
-rw-r--r--converter/pgm/lispmtopgm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/pgm/lispmtopgm.c b/converter/pgm/lispmtopgm.c
index 7b98ef00..40dd3fb4 100644
--- a/converter/pgm/lispmtopgm.c
+++ b/converter/pgm/lispmtopgm.c
@@ -89,7 +89,7 @@ getinit( file, colsP, rowsP, depthP, padrightP )
     for ( i = 0; i < sizeof(magic)-1; ++i )
         magic[i] = getc( file );
     magic[i]='\0';
-    if (!STREQ(LISPM_MAGIC, magic))
+    if (!streq(LISPM_MAGIC, magic))
         pm_error( "bad id string in Lispm file" );
     
     if ( pm_readlittleshort( file, colsP ) == -1 )