summaryrefslogtreecommitdiff
path: root/src/lib.c
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-05-24 20:45:54 -0300
committerEuAndreh <eu@euandre.org>2024-05-24 20:59:27 -0300
commit48939391bdb9dd53ac2e664568e5991a9bc47543 (patch)
treec89d66e310e10e6de95f1fc45eb97a1e6c283c7b /src/lib.c
parentsrc/vector.h: Add implementation and tests for vector_contains() (diff)
downloadpindaiba-48939391bdb9dd53ac2e664568e5991a9bc47543.tar.gz
pindaiba-48939391bdb9dd53ac2e664568e5991a9bc47543.tar.xz
Remove all remaining calls to logerr() that included a trailing newline
Diffstat (limited to 'src/lib.c')
-rw-r--r--src/lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.c b/src/lib.c
index 8d06ee0..eb22734 100644
--- a/src/lib.c
+++ b/src/lib.c
@@ -17,7 +17,7 @@ pindaiba_main(int argc, char *argv[]) {
(void)argv;
if (printf("%s %s %s\n", NAME, VERSION, DATE) < 0) {
- logerr("printf() < 0: %s\n", strerror(errno));
+ logerr("printf(): %s", strerror(errno));
goto out;
}