From: Frederic Marchal Date: Mon, 27 Jul 2015 17:51:45 +0000 (+0200) Subject: Fix a comment indentation. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cee1addcb0cecc4b2f62c37d7ddc2656a7d2dc31;p=thirdparty%2Fsarg.git Fix a comment indentation. --- diff --git a/alias.c b/alias.c index a7293b2..c1e7f0a 100644 --- 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]);