]> Creatis software - gdcm.git/commitdiff
Avoid warnings on C/C++ syle comments
authorjpr <jpr>
Tue, 8 Nov 2005 08:26:33 +0000 (08:26 +0000)
committerjpr <jpr>
Tue, 8 Nov 2005 08:26:33 +0000 (08:26 +0000)
src/gdcmopenjpeg/codec/convert.c

index a711f9e897894e7b13702cc5efdde947814ab4cf..d8476eea173ac16c801c84e5517ca8ab8e81b524 100644 (file)
@@ -220,8 +220,8 @@ int bmptoimage(char *filename, j2k_image_t * img, int subsampling_dx,
       W = Info_h.biWidth;
       H = Info_h.biHeight;
 
-      // PAD = 4 - (3 * W) % 4;
-      // PAD = (PAD == 4) ? 0 : PAD;
+      /* PAD = 4 - (3 * W) % 4;*/
+      /* PAD = (PAD == 4) ? 0 : PAD; */
       PAD = (3 * W) % 4 ? 4 - (3 * W) % 4 : 0;