From e8bca65d629a4faa89439c9f0e599efb5a259573 Mon Sep 17 00:00:00 2001
From: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Fri, 6 Oct 2023 11:50:11 +0200
Subject: [PATCH] write version to stdout like the man page says

---
 slock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/slock.c b/slock.c
index 5ae738c..b2f14e3 100644
--- a/slock.c
+++ b/slock.c
@@ -317,7 +317,7 @@ main(int argc, char **argv) {
 
 	ARGBEGIN {
 	case 'v':
-		fprintf(stderr, "slock-"VERSION"\n");
+		puts("slock-"VERSION);
 		return 0;
 	default:
 		usage();