about summary refs log tree commit diff
path: root/editor/pnmconvol.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-03-27 03:35:26 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-03-27 03:35:26 +0000
commit32a4f8301c58305b09af59164cf76fa3c7f14cf6 (patch)
tree1c9123e8b0f3d61a377b8aab22eab52615190d89 /editor/pnmconvol.c
parent2eae804b74e84addce536e9fd771fee07e24494c (diff)
downloadnetpbm-mirror-32a4f8301c58305b09af59164cf76fa3c7f14cf6.tar.gz
netpbm-mirror-32a4f8301c58305b09af59164cf76fa3c7f14cf6.tar.xz
netpbm-mirror-32a4f8301c58305b09af59164cf76fa3c7f14cf6.zip
Eliminate C++-style comments
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1159 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/pnmconvol.c')
-rw-r--r--editor/pnmconvol.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/pnmconvol.c b/editor/pnmconvol.c
index 93e99e84..c29a6fe4 100644
--- a/editor/pnmconvol.c
+++ b/editor/pnmconvol.c
@@ -1753,7 +1753,7 @@ convolveHorizontalRowPlane(struct pam *              const pamP,
             outputrow[col][plane] = window[crowso2][col][plane];
         else if (col == ccolso2) {
             unsigned int const leftcol = 0;
-                // Window is up againt left edge of image
+                /* Window is up againt left edge of image */
 
             float matrixSum;
 
@@ -1917,12 +1917,12 @@ convolveVerticalRowPlane(struct pam *              const pamP,
             outputrow[col][plane] = circMap[crowso2][col][plane];
         else if (col == ccolso2) {
             unsigned int const leftcol = 0;
-                // Convolution window is againt left edge of image
+                /* Convolution window is againt left edge of image */
 
             float matrixSum;
             unsigned int ccol;
 
-            // Slide window down in the first kernel's worth of columns
+            /* Slide window down in the first kernel's worth of columns */
             for (ccol = 0; ccol < convKernelP->cols; ++ccol) {
                 convColumnSum[leftcol + ccol] +=
                     circMap[addrow][leftcol + ccol][plane];
@@ -1942,7 +1942,7 @@ convolveVerticalRowPlane(struct pam *              const pamP,
             float matrixSum;
             unsigned int ccol;
 
-            // Slide window down in the column that just entered the window
+            /* Slide window down in the column that just entered the window */
             convColumnSum[addcol] += circMap[addrow][addcol][plane];
             convColumnSum[addcol] -= circMap[subrow][addcol][plane];