about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-12-02 01:34:17 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2006-12-02 01:34:17 +0000
commit72cab9afab6e82ff2ded34bff0c897f92ce9ff0a (patch)
treee154b0549cce6f01e39643a3a8b1ba4e982c6c17 /converter/other
parent8798d4db3568fe3ee52efd220a2ae5ffb01aa5d8 (diff)
downloadnetpbm-mirror-72cab9afab6e82ff2ded34bff0c897f92ce9ff0a.tar.gz
netpbm-mirror-72cab9afab6e82ff2ded34bff0c897f92ce9ff0a.tar.xz
netpbm-mirror-72cab9afab6e82ff2ded34bff0c897f92ce9ff0a.zip
Remove C++ comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@160 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/pamtogif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/other/pamtogif.c b/converter/other/pamtogif.c
index 2f6b0957..872d407b 100644
--- a/converter/other/pamtogif.c
+++ b/converter/other/pamtogif.c
@@ -270,7 +270,7 @@ closestColor(tuple         const color,
         unsigned int plane;
 
         for (distance = 0, plane = 0; plane < nComp; ++plane)
-            // Divide by 4 is to avoid arithmetic overflow
+            /* Divide by 4 is to avoid arithmetic overflow */
             distance += SQR(color[plane] - cmapP->color[i][plane]) / 4;
 
         if (distance < dmin) {
@@ -595,7 +595,7 @@ static stringCode const maxCodeLimit = (stringCode)1 << BITS;
 
 
 struct hashTableEntry {
-    long fcode;   // -1 means unused slot
+    long fcode;   /* -1 means unused slot */
     unsigned int ent;
 };