Sfoglia il codice sorgente

fix for SGI compilation

David Rose 24 anni fa
parent
commit
ada5f55002
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      panda/src/pnm/libpgm2.c

+ 1 - 1
panda/src/pnm/libpgm2.c

@@ -101,7 +101,7 @@ pgm_writepgmrowplain(FILE* file,gray* grayrow,int cols,gray maxval)
         if ( *gP > maxval )
             pm_error( "value out of bounds (%u > %u)", *gP, maxval );
 #endif /*DEBUG*/
-//        putus( (unsigned long) *gP, file );
+/*        putus( (unsigned long) *gP, file ); */
         putus( (unsigned short) *gP, file );
         charcount += 3;
         }