Skip to content

Commit

Permalink
Fixed type in file names
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelger committed Sep 21, 2010
1 parent 104f308 commit 79a849d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/trie/trie.c
Expand Up @@ -31,7 +31,7 @@ static VALUE rb_trie_read(VALUE self, VALUE filename_base) {
StringValue(da_filename);

VALUE tail_filename = rb_str_dup(filename_base);
rb_str_concat(da_filename, rb_str_new2(".tail"));
rb_str_concat(tail_filename, rb_str_new2(".tail"));
StringValue(tail_filename);

Trie *trie;
Expand Down Expand Up @@ -501,7 +501,7 @@ static VALUE rb_trie_save(VALUE self, VALUE filename_base) {
StringValue(da_filename);

VALUE tail_filename = rb_str_dup(filename_base);
rb_str_concat(da_filename, rb_str_new2(".tail"));
rb_str_concat(tail_filename, rb_str_new2(".tail"));
StringValue(tail_filename);

Trie *trie;
Expand Down

0 comments on commit 79a849d

Please sign in to comment.