]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 17 Apr 2010 00:12:57 +0000 (18:12 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sat, 17 Apr 2010 00:12:57 +0000 (18:12 -0600)
compat/GnuRegex.c

index 35924851d16a1256aa27bf0452348ca6060a8fd0..88421057d3e63925b627ec8601e4ae64de69c21d 100644 (file)
@@ -113,21 +113,21 @@ static int re_compile_fastmap(struct re_pattern_buffer * buffer);
  * match, or -2 for an internal error.  Also return register
  * information in REGS (if REGS and BUFFER->no_sub are nonzero).  */
 static int re_search(struct re_pattern_buffer * buffer, const char *string,
-          int length, int start, int range, struct re_registers * regs);
+                     int length, int start, int range, struct re_registers * regs);
 
 
 /* Like `re_search', but search in the concatenation of STRING1 and
  * STRING2.  Also, stop searching at index START + STOP.  */
 static int re_search_2(struct re_pattern_buffer * buffer, const char *string1,
-          int length1, const char *string2, int length2,
-          int start, int range, struct re_registers * regs, int stop);
+                       int length1, const char *string2, int length2,
+                       int start, int range, struct re_registers * regs, int stop);
 
 
 /* Like `re_search_2', but return how many characters in STRING the regexp
  * in BUFFER matched, starting at position START.  */
 static int re_match_2(struct re_pattern_buffer * buffer, const char *string1,
-          int length1, const char *string2, int length2,
-          int start, struct re_registers * regs, int stop);
+                      int length1, const char *string2, int length2,
+                      int start, struct re_registers * regs, int stop);
 
 
 /* isalpha etc. are used for the character classes.  */