diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2006-01-07 09:42:48 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2006-01-07 09:42:48 +0000 |
commit | f3a4197e349ec7441f2b4dfe6e3010bbfe400164 (patch) | |
tree | 88352537a1dae2a182ea5cc792c25b4fd4cdb45e /lib/libalpm/util.c | |
parent | 6c3657b7022c7873fca38b30796e7659b7580b34 (diff) |
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.c | 6 |
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); |