logo

utils-std

Collection of commonly available Unix tools
commit: 96762d349b9d26763161ddd74cd511b18b442189
parent 53db013e84b64f6119fcc1a972e7bb24a09384da
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue, 14 Nov 2023 09:09:43 +0100

cmd/tty: Prefix "tty: " in perror string

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("ttyname"); + perror("tty: ttyname"); return 2; } }