Use consistent/modern code formatting for dbl ptrs
diff --git a/rdrle.c b/rdrle.c
index e3509e7..226c528 100644
--- a/rdrle.c
+++ b/rdrle.c
@@ -71,7 +71,7 @@
   jvirt_sarray_ptr image;       /* virtual array to hold the image */
   JDIMENSION row;               /* current row # in the virtual array */
   rle_hdr header;               /* Input file information */
-  rle_pixel** rle_row;          /* holds a row returned by rle_getrow() */
+  rle_pixel **rle_row;          /* holds a row returned by rle_getrow() */
 
 } rle_source_struct;