diff options
| author | Jörg Frings-Fürst <debian@jff.email> | 2019-07-13 14:54:01 +0200 | 
|---|---|---|
| committer | Jörg Frings-Fürst <debian@jff.email> | 2019-07-13 14:54:01 +0200 | 
| commit | 7bbf4ae1401bc6e40f71a32d3f97952796d85690 (patch) | |
| tree | 61c3edf1a277547ecd11903427a31cd09cf42b8a /windows | |
| parent | f883fa5bd37b6420f5dc25027a68289c64028063 (diff) | |
| parent | 62c49103a575c79d20d524b36d1b7c4db9515dbf (diff) | |
Merge branch 'release/debian/6.9.2-1'debian/6.9.2-1
Diffstat (limited to 'windows')
| -rw-r--r-- | windows/testc.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/windows/testc.c b/windows/testc.c index 2e13350..b657682 100644 --- a/windows/testc.c +++ b/windows/testc.c @@ -73,7 +73,7 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)        }        else {          fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", pattern, str, -	        from, to, pmatch[mem].rm_so, pmatch[mem].rm_eo); +                from, to, pmatch[mem].rm_so, pmatch[mem].rm_eo);          nfail++;        }      } @@ -85,7 +85,7 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)    OnigErrorInfo einfo;    r = onig_new(®, (UChar* )pattern, (UChar* )(pattern + SLEN(pattern)), -	       ONIG_OPTION_DEFAULT, ONIG_ENCODING_SJIS, ONIG_SYNTAX_DEFAULT, &einfo); +         ONIG_OPTION_DEFAULT, ONIG_ENCODING_SJIS, ONIG_SYNTAX_DEFAULT, &einfo);    if (r) {      char s[ONIG_MAX_ERROR_MESSAGE_LEN];      onig_error_code_to_str((UChar* )s, r, &einfo); @@ -95,8 +95,8 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)    }    r = onig_search(reg, (UChar* )str, (UChar* )(str + SLEN(str)), -		  (UChar* )str, (UChar* )(str + SLEN(str)), -		  region, ONIG_OPTION_NONE); +                  (UChar* )str, (UChar* )(str + SLEN(str)), +                  region, ONIG_OPTION_NONE);    if (r < ONIG_MISMATCH) {      char s[ONIG_MAX_ERROR_MESSAGE_LEN];      onig_error_code_to_str((UChar* )s, r); @@ -127,7 +127,7 @@ static void xx(char* pattern, char* str, int from, int to, int mem, int not)        }        else {          fprintf(stdout, "FAIL: /%s/ '%s' %d-%d : %d-%d\n", pattern, str, -	        from, to, region->beg[mem], region->end[mem]); +                from, to, region->beg[mem], region->end[mem]);          nfail++;        }      } | 
