os/server: Fix indentation

This commit is contained in:
André Twupack 2014-06-28 16:51:59 +02:00 committed by Nicolas Hillegeer
parent 5d53c51fae
commit 7c473dc0a2

View File

@ -93,9 +93,9 @@ void server_start(char *endpoint)
// Trim to `ADDRESS_MAX_SIZE` // Trim to `ADDRESS_MAX_SIZE`
if (xstrlcpy(addr, endpoint, sizeof(addr)) >= sizeof(addr)) { if (xstrlcpy(addr, endpoint, sizeof(addr)) >= sizeof(addr)) {
// TODO(aktau): since this is not what the user wanted, perhaps we // TODO(aktau): since this is not what the user wanted, perhaps we
// should return an error here // should return an error here
EMSG2("Address was too long, truncated to %s", addr); EMSG2("Address was too long, truncated to %s", addr);
} }
// Check if the server already exists // Check if the server already exists