* [PATCH nt] fix: exit code isn't boolean
@ 2024-03-30 17:54 youkwhd
2024-03-30 18:54 ` [PATCH nt] exit code patch for git.ignore.pl/nt Aki
0 siblings, 1 reply; 2+ messages in thread
From: youkwhd @ 2024-03-30 17:54 UTC (permalink / raw)
To: Please
---
nt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nt.c b/nt.c
index bc00216..bbe4403 100644
--- a/nt.c
+++ b/nt.c
@@ -44,5 +44,5 @@ main(const int argc, const char* argv[])
if (1 > times)
return 1;
const char* str = concat(argc - 2, &argv[2]);
- return repeat(times, str);
+ return !repeat(times, str);
}
--
2.44.0
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-03-30 18:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-30 17:54 [PATCH nt] fix: exit code isn't boolean youkwhd
2024-03-30 18:54 ` [PATCH nt] exit code patch for git.ignore.pl/nt Aki
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox