diff options
author | ed <ed@FreeBSD.org> | 2010-03-13 18:06:17 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2010-03-13 18:06:17 +0000 |
commit | 533aa54353bcbfc4d972b69b5028b5b0974a7ac0 (patch) | |
tree | 2efe186fc1f547a511400880681a67504eb5dd78 /lib/libcompat/4.1/cftime.c | |
parent | b4809b0e570553066cd9e45450ed33d5966b457a (diff) | |
download | FreeBSD-src-533aa54353bcbfc4d972b69b5028b5b0974a7ac0.zip FreeBSD-src-533aa54353bcbfc4d972b69b5028b5b0974a7ac0.tar.gz |
Small style(9) cleanups.
Diffstat (limited to 'lib/libcompat/4.1/cftime.c')
-rw-r--r-- | lib/libcompat/4.1/cftime.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcompat/4.1/cftime.c b/lib/libcompat/4.1/cftime.c index 8033e44..41275b6 100644 --- a/lib/libcompat/4.1/cftime.c +++ b/lib/libcompat/4.1/cftime.c @@ -41,6 +41,7 @@ int cftime(char *s, char *format, const time_t *clock) { - return strftime(s, MAXLEN, format? format: "%C", localtime(clock)); + + return (strftime(s, MAXLEN, format? format: "%C", localtime(clock))); } |