logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git/
commit: a6b0ec030af67573fa9bffa92da2ae66b2be62de
parent 6efeab34dba910ab3c1636e0ef427ca947992d31
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 11 Mar 2025 10:01:42 +0100

cmd/date: Fix == instead of = for date_strftime() buf

Diffstat:

Mcmd/date.c2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/date.c b/cmd/date.c @@ -32,7 +32,7 @@ date_strftime(char *restrict buf, if(fmtlen == 0) { - buf[0] == '\0'; + buf[0] = '\0'; return 0; }