summaryrefslogtreecommitdiff
path: root/lib/libelf
diff options
context:
space:
mode:
authorJoseph Koshy <jkoshy@FreeBSD.org>2006-12-09 16:27:15 +0000
committerJoseph Koshy <jkoshy@FreeBSD.org>2006-12-09 16:27:15 +0000
commit37ec86bb1bd48ee499e734c5c361260ceb82412c (patch)
treee02f5320aee3b77ef625f9555860ca684afc42f1 /lib/libelf
parent82417e9f0390a0aacb61fc5d35e4304af949faad (diff)
Notes
Diffstat (limited to 'lib/libelf')
-rw-r--r--lib/libelf/elf_errmsg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libelf/elf_errmsg.c b/lib/libelf/elf_errmsg.c
index 394c63b2a485..05947a7cf28a 100644
--- a/lib/libelf/elf_errmsg.c
+++ b/lib/libelf/elf_errmsg.c
@@ -75,7 +75,7 @@ elf_errmsg(int error)
if (oserr) {
strlcpy(LIBELF_PRIVATE(msg), _libelf_errors[error],
sizeof(LIBELF_PRIVATE(msg)));
- strlcat(LIBELF_PRIVATE(msg), ":", sizeof(LIBELF_PRIVATE(msg)));
+ strlcat(LIBELF_PRIVATE(msg), ": ", sizeof(LIBELF_PRIVATE(msg)));
strlcat(LIBELF_PRIVATE(msg), strerror(oserr),
sizeof(LIBELF_PRIVATE(msg)));
return (const char *)&LIBELF_PRIVATE(msg);