Skip to content

Commit

Permalink
Don't mix code and declarations.
Browse files Browse the repository at this point in the history
  • Loading branch information
rafl committed Nov 6, 2008
1 parent 2134691 commit 0807142
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Signature.xs
Expand Up @@ -150,8 +150,9 @@ handle_proto (pTHX_ OP *op, void *user_data) {
if (s[0] == ':') {
s++;
while (s[0] != '{') {
char *attr_start;
s = hook_toke_skipspace (aTHX_ s);
char *attr_start = s;
attr_start = s;
(void)hook_toke_scan_word (aTHX_ (s - SvPVX (PL_linestr)), 0, tmpbuf, sizeof (tmpbuf), &retlen);

if (retlen < 1) {
Expand Down

0 comments on commit 0807142

Please sign in to comment.