]> git.mdlowis.com Git - proto/libregexp.git/commitdiff
whitespace changes master
authorMichael D. Lowis <mike.lowis@gentex.com>
Thu, 20 Dec 2018 21:23:08 +0000 (16:23 -0500)
committerMichael D. Lowis <mike.lowis@gentex.com>
Thu, 20 Dec 2018 21:23:08 +0000 (16:23 -0500)
regcomp.h
regexec.c

index c0fb88cddc4afe89091742edae2c7d67730f1660..b9bbbdd276ecb2bfe7a92a8d1a5c38118c6ddfcd 100644 (file)
--- a/regcomp.h
+++ b/regcomp.h
@@ -6,7 +6,7 @@
 #define NSUBEXP 32
 
 typedef struct {
-    Resub    m[NSUBEXP];
+    Resub m[NSUBEXP];
 } Resublist;
 
 /*
index 0dbdb271e341484ba17506fbd60849ef5ceafa90..40ce89a9ad6e4e80abb70a8db8366fbc230aacb3 100644 (file)
--- a/regexec.c
+++ b/regexec.c
@@ -185,10 +185,10 @@ regexec2(Reprog *progp,    /* program to run */
 }
 
 extern int
-regexec(Reprog *progp,    /* program to run */
-    char *bol,    /* string to run machine on */
-    Resub *mp,    /* subexpression elements */
-    int ms)        /* number of elements at mp */
+regexec(Reprog *progp, /* program to run */
+    char *bol,         /* string to run machine on */
+    Resub *mp,         /* subexpression elements */
+    int ms)            /* number of elements at mp */
 {
     Reljunk j;
     Relist relist0[LISTSIZE], relist1[LISTSIZE];