diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 10:12:52 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-07-05 10:12:52 +0000 |
commit | d63ffa74672fd95e2e07b172de7b9fd21a3329de (patch) | |
tree | 57e9a6669f1c5eee22a086af5f8b9f824ee3bbce /ruby.c | |
parent | e3a15b08f2fd5cd7b8293e3188a0d25bdf0c914e (diff) | |
download | ruby-d63ffa74672fd95e2e07b172de7b9fd21a3329de.tar.gz ruby-d63ffa74672fd95e2e07b172de7b9fd21a3329de.tar.xz ruby-d63ffa74672fd95e2e07b172de7b9fd21a3329de.zip |
* ruby.c: Qfalse is VALUE, not pointer.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12704 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.c')
-rw-r--r-- | ruby.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -61,7 +61,7 @@ static int sflag = 0; static int xflag = 0; extern int ruby_yydebug; -char *ruby_inplace_mode = Qfalse; +char *ruby_inplace_mode = 0; static NODE *load_file(VALUE, const char *, int); static void forbid_setid(const char *); |