]> Creatis software - clitk.git/commitdiff
remove warning
authorDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Fri, 2 Jun 2017 11:03:53 +0000 (13:03 +0200)
committerDavid Sarrut <david.sarrut@creatis.insa-lyon.fr>
Fri, 2 Jun 2017 11:03:53 +0000 (13:03 +0200)
utilities/CxImage/ximaenc.cpp
utilities/CxImage/ximagif.cpp
utilities/CxImage/ximaint.cpp

index 8edfbfcd6d5521a681372eb67203a91b26f9d4a5..4f095feb2a42dac9774287f8c1c10822fa2a2002 100644 (file)
@@ -996,7 +996,7 @@ bool CxImage::CheckFormat(CxFile * hFile, DWORD imagetype)
 ////////////////////////////////////////////////////////////////////////////////
 bool CxImage::CheckFormat(BYTE * buffer, DWORD size, DWORD imagetype)
 {
-       if (buffer==NULL || size==NULL){
+       if (buffer==NULL || size==0){
                strcpy(info.szLastError,"invalid or empty buffer");
                return false;
        }
index 740717c730107874c3cbdebaca305a358e185bb0..0c89759749f6d88f9a7eda18b989a76fcbf69d7c 100644 (file)
@@ -718,8 +718,8 @@ void CxImageGIF::Putword(int w, CxFile *fp )
 ////////////////////////////////////////////////////////////////////////////////
 void CxImageGIF::compressNONE( int init_bits, CxFile* outfile)
 {
-       register long c;
-       register long ent;
+       long c;
+       long ent;
 
        // g_init_bits - initial number of bits
        // g_outfile   - pointer to output file
@@ -766,12 +766,12 @@ void CxImageGIF::compressNONE( int init_bits, CxFile* outfile)
 
 void CxImageGIF::compressLZW( int init_bits, CxFile* outfile)
 {
-       register long fcode;
-       register long c;
-       register long ent;
-       register long hshift;
-       register long disp;
-       register long i;
+       long fcode;
+       long c;
+       long ent;
+       long hshift;
+       long disp;
+       long i;
 
        // g_init_bits - initial number of bits
        // g_outfile   - pointer to output file
@@ -891,10 +891,10 @@ void CxImageGIF::output( code_int  code)
 void CxImageGIF::cl_hash(long hsize)
 
 {
-       register long *htab_p = htab+hsize;
+       long *htab_p = htab+hsize;
 
-       register long i;
-       register long m1 = -1L;
+       long i;
+       long m1 = -1L;
 
        i = hsize - 16;
 
@@ -1061,9 +1061,9 @@ short CxImageGIF::get_next_code(CxFile* file)
  */
 short CxImageGIF::decoder(CxFile* file, CImageIterator* iter, short linewidth, int &bad_code_count)
 {
-       register BYTE *sp, *bufptr;
+       BYTE *sp, *bufptr;
        BYTE *buf;
-       register short code, fc, oc, bufcnt;
+       short code, fc, oc, bufcnt;
        short c, size, ret;
 
        /* Initialize for decoding a new image... */
index 989d76cf71e3d1014cb7b95d2e46706a2995c0dd..c30e882a47e32a34af80d9f5c56d5709128a835c 100644 (file)
@@ -853,7 +853,7 @@ float CxImage::KernelBessel_J1(const float x)
 {
        double p, q;
        
-       register long i;
+       long i;
        
        static const double
        Pone[] =
@@ -895,7 +895,7 @@ float CxImage::KernelBessel_P1(const float x)
 {
        double p, q;
        
-       register long i;
+       long i;
        
        static const double
        Pone[] =
@@ -931,7 +931,7 @@ float CxImage::KernelBessel_Q1(const float x)
 {
        double p, q;
        
-       register long i;
+       long i;
        
        static const double
        Pone[] =