From e2ac6901644c3792124a58e77bbb6b81a784dee1 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Thu, 19 Mar 2009 01:01:36 +0100 Subject: [PATCH] Reindented code. --- src/commands.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/commands.c b/src/commands.c index 740744f..11a21b5 100644 --- a/src/commands.c +++ b/src/commands.c @@ -89,17 +89,17 @@ static int command_uptime(struct user* user, const char* message) if (d) { - strcat(tmp, uhub_itoa((int) d)); - strcat(tmp, " day"); - if (d != 1) strcat(tmp, "s"); - strcat(tmp, ", "); + strcat(tmp, uhub_itoa((int) d)); + strcat(tmp, " day"); + if (d != 1) strcat(tmp, "s"); + strcat(tmp, ", "); } if (h < 10) strcat(tmp, "0"); - strcat(tmp, uhub_itoa((int) h)); + strcat(tmp, uhub_itoa((int) h)); strcat(tmp, ":"); if (m < 10) strcat(tmp, "0"); - strcat(tmp, uhub_itoa((int) m)); + strcat(tmp, uhub_itoa((int) m)); send_message(user, tmp); return 0;