diff options
Diffstat (limited to 'sample/listcap.c')
-rw-r--r-- | sample/listcap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/listcap.c b/sample/listcap.c index e283890..6f9880c 100644 --- a/sample/listcap.c +++ b/sample/listcap.c @@ -36,7 +36,7 @@ extern int ex(unsigned char* str, unsigned char* pattern, ONIG_OPTION_DEFAULT, ONIG_ENCODING_ASCII, syntax, &einfo); if (r != ONIG_NORMAL) { char s[ONIG_MAX_ERROR_MESSAGE_LEN]; - onig_error_code_to_str(s, r, &einfo); + onig_error_code_to_str((UChar* )s, r, &einfo); fprintf(stderr, "ERROR: %s\n", s); return -1; } @@ -68,7 +68,7 @@ extern int ex(unsigned char* str, unsigned char* pattern, } else { /* error */ char s[ONIG_MAX_ERROR_MESSAGE_LEN]; - onig_error_code_to_str(s, r); + onig_error_code_to_str((UChar* )s, r); return -1; } |