aboutsummaryrefslogtreecommitdiffstats
path: root/regint.h
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-17 06:21:11 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-11-17 06:21:11 +0000
commit8e2a1cba362cf4a464b6233f23f485f7b91696c3 (patch)
tree32de0f1e59d837c736afb17b5792cfdd85e44a85 /regint.h
parent07b1f01b335ea67f54e64e24e666dfdafb5b43c1 (diff)
downloadruby-8e2a1cba362cf4a464b6233f23f485f7b91696c3.tar.gz
* regint.h (OnigOpInfoType): constify name.
* regcomp.c (op2name): constify return value. * regcomp.c (onig_print_compiled_byte_code): use PRIuPTR and uintptr_t to clean warnings. * regcomp.c (print_indent_tree): use PRIxPTR and intptr_t. * regexec.c (match_at): use PRIdPTR and intptr_t. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'regint.h')
-rw-r--r--regint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/regint.h b/regint.h
index ca9f2b12c8..ed8de1d017 100644
--- a/regint.h
+++ b/regint.h
@@ -786,7 +786,7 @@ typedef struct {
typedef struct {
short int opcode;
- char* name;
+ const char* name;
short int arg_type;
} OnigOpInfoType;