diff options
author | EuAndreh <eu@euandre.org> | 2024-05-24 20:45:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-05-24 20:59:27 -0300 |
commit | 48939391bdb9dd53ac2e664568e5991a9bc47543 (patch) | |
tree | c89d66e310e10e6de95f1fc45eb97a1e6c283c7b /src/lib.c | |
parent | src/vector.h: Add implementation and tests for vector_contains() (diff) | |
download | pindaiba-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |