summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2006-01-07 10:42:48 +0100
committerAurelien Foret <aurelien@archlinux.org>2006-01-07 10:42:48 +0100
commitf3a4197e349ec7441f2b4dfe6e3010bbfe400164 (patch)
tree88352537a1dae2a182ea5cc792c25b4fd4cdb45e /lib/libalpm/util.c
parent6c3657b7022c7873fca38b30796e7659b7580b34 (diff)
downloadpacman-f3a4197e349ec7441f2b4dfe6e3010bbfe400164.tar.gz
pacman-f3a4197e349ec7441f2b4dfe6e3010bbfe400164.tar.xz
code cleanup (mainly removed line spaces at the beginning of lines by tabulations)
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c
index 8c0b38a7..79287d34 100644
--- a/lib/libalpm/util.c
+++ b/lib/libalpm/util.c
@@ -328,8 +328,10 @@ int _alpm_log_action(unsigned char usesyslog, FILE *f, char *fmt, ...)
t = time(NULL);
tm = localtime(&t);
- fprintf(f, "[%02d/%02d/%02d %02d:%02d] %s\n", tm->tm_mon+1, tm->tm_mday,
- tm->tm_year-100, tm->tm_hour, tm->tm_min, msg);
+ fprintf(f, "[%02d/%02d/%02d %02d:%02d] %s\n",
+ tm->tm_mon+1, tm->tm_mday, tm->tm_year-100,
+ tm->tm_hour, tm->tm_min,
+ msg);
}
return(0);