]> git.ipfire.org Git - thirdparty/sarg.git/commitdiff
Fix a comment indentation.
authorFrederic Marchal <fmarchal@users.sourceforge.net>
Mon, 27 Jul 2015 17:51:45 +0000 (19:51 +0200)
committerFrederic Marchal <fmarchal@users.sourceforge.net>
Mon, 27 Jul 2015 17:51:45 +0000 (19:51 +0200)
alias.c

diff --git a/alias.c b/alias.c
index a7293b242fbef12b665de8fdde7221a89ae0c6ac..c1e7f0af8d7a7a406371037d534a50ce3c97e965 100644 (file)
--- a/alias.c
+++ b/alias.c
@@ -786,9 +786,9 @@ static const char *Alias_MatchRegex(struct AliasItemStruct *alias,const char *na
                        sub=str[++i]-'0';
                        if (sub>=1 && sub<=nmatches) {
                                /*
-                                                        * ovector[sub] is the start position of the match.
-                                                        * ovector[sub+1] is the end position of the match.
-                                                        */
+                                * ovector[sub] is the start position of the match.
+                                * ovector[sub+1] is the end position of the match.
+                                */
                                sub<<=1;
                                if (repl_idx+ovector[sub+1]-ovector[sub]>=sizeof(Replacement)-1) break;
                                memcpy(Replacement+repl_idx,name+ovector[sub],ovector[sub+1]-ovector[sub]);