Skip to content

Commit

Permalink
fix codetest failure - line length
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehh committed Jan 14, 2011
1 parent 4fbf977 commit e0df021
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/string/api.c
Expand Up @@ -758,7 +758,8 @@ Parrot_str_to_platform_cstring(PARROT_INTERP, ARGIN(STRING *s))
return NULL;
}
else {
STRING * const s_plat = Parrot_str_change_encoding(interp, s, Parrot_platform_encoding_ptr->num);
STRING * const s_plat = Parrot_str_change_encoding(interp,
s, Parrot_platform_encoding_ptr->num);
return Parrot_str_to_cstring(interp, s_plat);
}
}
Expand Down

0 comments on commit e0df021

Please sign in to comment.