fix fmt string mistake - lchat - A line oriented chat front end for ii. | |
git clone git://git.suckless.org/lchat | |
Log | |
Files | |
Refs | |
README | |
--- | |
commit bbde23732f8c7769b982f0c1bda9b99fbf93f932 | |
parent 0f9c10417a8ab19e6658aece630df0816efa05ba | |
Author: Jan Klemkow <[email protected]> | |
Date: Tue, 27 Dec 2016 22:42:39 +0100 | |
fix fmt string mistake | |
Diffstat: | |
M filter/indent.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/filter/indent.c b/filter/indent.c | |
@@ -9,7 +9,7 @@ main(int argc, char *argv[]) | |
{ | |
char buf[BUFSIZ]; | |
char timestr[BUFSIZ]; | |
- char *fmt = "%H:%m"; | |
+ char *fmt = "%H:%M"; | |
char *next, *nick, *word; | |
struct tm tm; | |