Style nit - no space between function name and bracket.

This commit is contained in:
nicm
2014-02-14 13:59:01 +00:00
parent bfb700cf41
commit f835be4bb2
7 changed files with 26 additions and 26 deletions

View File

@ -454,7 +454,7 @@ server_destroy_session(struct session *s)
}
void
server_check_unattached (void)
server_check_unattached(void)
{
struct session *s;
@ -480,7 +480,7 @@ server_set_identify(struct client *c)
tv.tv_sec = delay / 1000;
tv.tv_usec = (delay % 1000) * 1000L;
if (event_initialized (&c->identify_timer))
if (event_initialized(&c->identify_timer))
evtimer_del(&c->identify_timer);
evtimer_set(&c->identify_timer, server_callback_identify, c);
evtimer_add(&c->identify_timer, &tv);
@ -592,7 +592,7 @@ server_set_stdin_callback(struct client *c, void (*cb)(struct client *, int,
c->references++;
if (c->stdin_closed)
c->stdin_callback (c, 1, c->stdin_callback_data);
c->stdin_callback(c, 1, c->stdin_callback_data);
server_write_client(c, MSG_STDIN, NULL, 0);