about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
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;
 };