From: jpr Date: Tue, 8 Nov 2005 08:26:33 +0000 (+0000) Subject: Avoid warnings on C/C++ syle comments X-Git-Tag: OpenJPEG.Version1.2~21 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=e362e154b84f087750d1ed1f6671a34b3bf5ff7a;p=gdcm.git Avoid warnings on C/C++ syle comments --- diff --git a/src/gdcmopenjpeg/codec/convert.c b/src/gdcmopenjpeg/codec/convert.c index a711f9e8..d8476eea 100644 --- a/src/gdcmopenjpeg/codec/convert.c +++ b/src/gdcmopenjpeg/codec/convert.c @@ -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;