logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git
commit: 8fd4ff38bd19cd97717118081cc702ee41d04c09
parent a926e30b91a25365f7b16e8e1396f794df1af3f1
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Fri, 20 Sep 2024 04:46:16 +0200

cmd/tty: unify error message formatting

Diffstat:

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

diff --git a/cmd/tty.c b/cmd/tty.c @@ -24,7 +24,7 @@ main(void) } else { - perror("tty: ttyname"); + perror("tty: error: ttyname"); return 2; } }