From 39168765cb87429896c64d141f965c5342b79012 Mon Sep 17 00:00:00 2001 From: Enno Tensing Date: Tue, 21 Jan 2025 21:11:59 +0100 Subject: [PATCH] smu: More cleanup --- smu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smu.c b/smu.c index b7a0b53..66b228e 100644 --- a/smu.c +++ b/smu.c @@ -686,7 +686,7 @@ void *ereallocz(void *p, size_t size) res = calloc(1, size); if (!res) - eprint("fatal: could not malloc() %u bytes\n", size); + perror(PACKAGE); return res; } @@ -754,7 +754,7 @@ int main(int argc, char *argv[]) for (i = 1; i < argc; i++) { if (!strcmp("-v", argv[i])) { - eprint("simple markup %s (C) Enno Boland\n", VERSION); + eprint("simple markup %s (C) 2007 - 2014 Enno Boland, (C) 2025 Enno Tensing\n", VERSION); goto exit; } else if (!strcmp("-n", argv[i])) { nohtml = 1;