Skip to content
This repository has been archived by the owner on Jan 22, 2019. It is now read-only.

Commit

Permalink
Remove commented out printf
Browse files Browse the repository at this point in the history
  • Loading branch information
luislavena committed Aug 22, 2012
1 parent 493cf88 commit afe4bf5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ext/fenix/file.c
Expand Up @@ -226,10 +226,8 @@ fenix_code_page(rb_encoding *enc)
ENCODING_CODERANGE_SET(name_key, rb_usascii_encindex(), ENC_CODERANGE_7BIT);

code_page_value = rb_hash_lookup(rb_code_page, name_key);
if (code_page_value != Qnil) {
// printf("cached code page: %i\n", FIX2INT(code_page_value));
if (code_page_value != Qnil)
return (UINT)FIX2INT(code_page_value);
}

name_key = rb_usascii_str_new2(enc_name);

Expand Down

0 comments on commit afe4bf5

Please sign in to comment.