summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-29 01:49:30 +0100
committerMichael Adam <obnox@samba.org>2008-02-29 09:31:39 +0100
commit3c1843f931b896dd3bb142346ecb44c0fb9202d6 (patch)
treed199dc2c6836288e6f4d8b7dfb7e443d283b3562
parent1d906d346ed90b87895772a64c7613324ef8b682 (diff)
downloadsamba-3c1843f931b896dd3bb142346ecb44c0fb9202d6.tar.gz
samba-3c1843f931b896dd3bb142346ecb44c0fb9202d6.tar.xz
samba-3c1843f931b896dd3bb142346ecb44c0fb9202d6.zip
libreplace: add missing newline in output of getifaddrs test.
Michael (cherry picked from commit f8243cfc47c7414bab7f249d0e5d1c85e8ca7d64)
-rw-r--r--source/lib/replace/test/getifaddrs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/replace/test/getifaddrs.c b/source/lib/replace/test/getifaddrs.c
index 66eed702687..4455462193d 100644
--- a/source/lib/replace/test/getifaddrs.c
+++ b/source/lib/replace/test/getifaddrs.c
@@ -55,7 +55,7 @@ int getifaddrs_test(void)
ret = getifaddrs(&ifs);
if (ret != 0) {
- fprintf(stderr, "getifaddrs() failed: %s", strerror(errno));
+ fprintf(stderr, "getifaddrs() failed: %s\n", strerror(errno));
return 1;
}