Skip to content

Commit

Permalink
Merge pull request #1 from mabounassif/patch-1
Browse files Browse the repository at this point in the history
Update for Ruby 1.9.2
  • Loading branch information
feedbackmine committed Jun 8, 2011
2 parents 8a489b0 + e9098e2 commit b09a625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/ferret_tokenizer.c
Expand Up @@ -50,7 +50,7 @@ VALUE method_next(VALUE self) {
}

VALUE method_initialize(VALUE self, VALUE str) {
char* s = RSTRING(str)->ptr;
char* s = RSTRING_PTR(str);
Tokenizer *t;
Data_Get_Struct(self, Tokenizer, t);
t->data = s;
Expand Down

0 comments on commit b09a625

Please sign in to comment.