about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-09-30 23:04:47 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2021-09-30 23:04:47 +0000
commite0dd831bcaacef8a402a02d4bb35866aaaa5d6ca (patch)
tree5a4da8ddbd6a5194d39aa57baad4dd7bd7419981
parent5aa4e860c03c8a181058176145e3dbb48fdd35a5 (diff)
downloadnetpbm-mirror-e0dd831bcaacef8a402a02d4bb35866aaaa5d6ca.tar.gz
netpbm-mirror-e0dd831bcaacef8a402a02d4bb35866aaaa5d6ca.tar.xz
netpbm-mirror-e0dd831bcaacef8a402a02d4bb35866aaaa5d6ca.zip
Remove C99 comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4145 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/pamtogif.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/converter/other/pamtogif.c b/converter/other/pamtogif.c
index ec7c3dcf..d360f433 100644
--- a/converter/other/pamtogif.c
+++ b/converter/other/pamtogif.c
@@ -23,9 +23,10 @@ static bool verbose;
 
 
 enum TransparencyType {TRANS_NONE, TRANS_COLOR, TRANS_ALPHA};
-    // The source of transparency for the GIF: nothing is transparent,
-    // All pixels of a certain color are transparent, or the alpha plane
-    // in the input tells what is transparent.
+    /* The source of transparency for the GIF: nothing is transparent,
+       All pixels of a certain color are transparent, or the alpha plane
+       in the input tells what is transparent.
+    */
 
 typedef unsigned int StringCode;
     /* A code to be place in the GIF raster.  It represents
@@ -1674,7 +1675,7 @@ computeTransparent(enum TransparencyType const transType,
     case TRANS_NONE: {
         cmapP->haveTransparent = FALSE;
     } break;
-    }  // switch
+    }  /* switch */
     reportTransparent(transType, cmapP);
 }