Skip to content

Commit

Permalink
[style] return (var).
Browse files Browse the repository at this point in the history
  • Loading branch information
pstef committed Jul 31, 2016
1 parent f3b8e6e commit c9cbd3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions io.c
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ compute_code_target(void)
}
else if (ps.ind_stmt)
target_col += continuation_indent;
return target_col;
return (target_col);
}

int
Expand Down Expand Up @@ -621,7 +621,7 @@ chfont(struct fstate *of, struct fstate *nf, char *s)
*s++ = '0' + nf->size - of->size;
}
}
return s;
return (s);
}

void
Expand Down
2 changes: 1 addition & 1 deletion lexi.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ lexi(void)
ps.keyword = 4; /* a type name */
ps.last_u_d = true;
last_code = decl;
return decl;
return (decl);
}
if (last_code == decl) /* if this is a declared variable, then
* following sign is unary */
Expand Down

0 comments on commit c9cbd3a

Please sign in to comment.