Fix some spacing nits.

This commit is contained in:
nicm
2014-10-22 23:18:53 +00:00
parent 68cb1c0e6b
commit abfb9656ef
7 changed files with 13 additions and 13 deletions

View File

@ -127,7 +127,7 @@ session_create(const char *name, int argc, char **argv, const char *path,
s->name = NULL;
do {
s->id = next_session_id++;
free (s->name);
free(s->name);
xasprintf(&s->name, "%u", s->id);
} while (RB_FIND(sessions, &sessions, s) != NULL);
}