about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--lib/libpgm1.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libpgm1.c b/lib/libpgm1.c
index 8fe53270..57344c16 100644
--- a/lib/libpgm1.c
+++ b/lib/libpgm1.c
@@ -209,10 +209,10 @@ validateRpgmRow(gray *         const grayrow,
 
 static void
 readRpgmRow(FILE * const fileP,
-               gray * const grayrow, 
-               int    const cols,
-               gray   const maxval,
-               int    const format) {
+            gray * const grayrow, 
+            int    const cols,
+            gray   const maxval,
+            int    const format) {
 
     unsigned int const bytesPerSample = maxval < 256 ? 1 : 2;
     int          const bytesPerRow    = cols * bytesPerSample;