diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2019-07-12 09:18:45 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2019-07-12 09:18:45 +0200 |
commit | ed7b90269a529d90d151969348e55347fae02c0d (patch) | |
tree | 7c72e5a49112a844a53a2c10ef1fda47867aee92 /sample/crnl.c | |
parent | 6cac1738b6aebf75b29d225775030d291319f9a2 (diff) | |
parent | 5c29b174a11e992dac68553f08645fe4a825c315 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'sample/crnl.c')
-rw-r--r-- | sample/crnl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sample/crnl.c b/sample/crnl.c index ee6a516..3ad1210 100644 --- a/sample/crnl.c +++ b/sample/crnl.c @@ -12,7 +12,7 @@ static int nfail = 0; static void result(int no, int from, int to, - int expected_from, int expected_to) + int expected_from, int expected_to) { fprintf(stderr, "%3d: ", no); if (from == expected_from && to == expected_to) { @@ -20,7 +20,7 @@ static void result(int no, int from, int to, } else { fprintf(stderr, "Fail: expected: (%d-%d), result: (%d-%d)\n", - expected_from, expected_to, from, to); + expected_from, expected_to, from, to); nfail++; } @@ -41,7 +41,7 @@ x(int no, char* pattern_arg, char* str_arg, str = (UChar* )str_arg; r = onig_new(®, pattern, pattern + strlen((char* )pattern), - ONIG_OPTION_DEFAULT, ONIG_ENCODING_ASCII, ONIG_SYNTAX_DEFAULT, &einfo); + ONIG_OPTION_DEFAULT, ONIG_ENCODING_ASCII, ONIG_SYNTAX_DEFAULT, &einfo); if (r != ONIG_NORMAL) { char s[ONIG_MAX_ERROR_MESSAGE_LEN]; onig_error_code_to_str(s, r, &einfo); |