Style nits

This commit is contained in:
twinaphex 2016-02-15 07:16:09 +01:00
parent b2fa47ef43
commit bdbd3098dd

View File

@ -138,7 +138,8 @@ bool input_keyboard_line_event(
{
/* Handle left/right here when suitable */
char *newbuf = (char*)realloc(state->buffer, state->size + 2);
char *newbuf = (char*)
realloc(state->buffer, state->size + 2);
if (!newbuf)
return false;