fix fmt string mistake - lchat - A line oriented chat front end for ii.
(HTM) git clone git://git.suckless.org/lchat
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
---
(DIR) commit bbde23732f8c7769b982f0c1bda9b99fbf93f932
(DIR) parent 0f9c10417a8ab19e6658aece630df0816efa05ba
(HTM) Author: Jan Klemkow <j.klemkow@wemelug.de>
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(-)
---
(DIR) 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;