diff options
author | Miles Bader <miles@gnu.org> | 1996-07-05 21:13:36 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-07-05 21:13:36 +0000 |
commit | b7979ec285fcc630e481228e05aa44644f0cd717 (patch) | |
tree | 1cc5d1507bae637cb8397d61799696d3ad41999a /libshouldbeinlibc | |
parent | c514c1ec76e9a53c7e66a6ef06a0d5b665060045 (diff) |
(fmt_past_time): Get rid of extraneous `f' in fmt string.
Diffstat (limited to 'libshouldbeinlibc')
-rw-r--r-- | libshouldbeinlibc/timefmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libshouldbeinlibc/timefmt.c b/libshouldbeinlibc/timefmt.c index 906b9ed1..aab71c59 100644 --- a/libshouldbeinlibc/timefmt.c +++ b/libshouldbeinlibc/timefmt.c @@ -281,7 +281,7 @@ size_t fmt_past_time (struct timeval *tv, struct timeval *now, size_t width, char *buf, size_t buf_len) { - static char *time_fmts[] = { "%-r", "%-lf:%M%p", "%-l%p", 0 }; + static char *time_fmts[] = { "%-r", "%-l:%M%p", "%-l%p", 0 }; static char *week_fmts[] = { "%A,", "%a,", "%a", 0 }; static char *month_fmts[] = { "%A, %-d", "%a, %-d", "%a %-d", "%a%-d", 0 }; static char *date_fmts[] = |