This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository legacy-imlib2.
View the commit online.
commit e9de0b1d3815967012f8b2d6fec7c5fedb24d101
Author: Kim Woelders <[email protected]>
AuthorDate: Thu May 11 19:00:12 2023 +0200
test: Fix pr_info() when not printing to stdout
---
test/test.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/test.cpp b/test/test.cpp
index 2f22bb3..349151d 100644
--- a/test/test.cpp
+++ b/test/test.cpp
@@ -57,7 +57,7 @@ pr_info(const char *fmt, ...)
snprintf(fmtx, sizeof(fmtx), COL_YEL "[ ] - %s%s\n",
fmt, COL_RST);
else
- snprintf(fmtx, sizeof(fmtx), "[ ] - %s", fmt);
+ snprintf(fmtx, sizeof(fmtx), "[ ] - %s\n", fmt);
fmt = fmtx;
vprintf(fmt, args);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.