aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Zemtsov <ezemtsov@google.com>2017-10-26 16:15:49 -0700
committerEugene Zemtsov <ezemtsov@google.com>2017-10-26 16:17:57 -0700
commit857d28136af8eb7760c4cfd0a381bbfc5099d8ee (patch)
treed09f4209c2fb47163b2da40ed985cea6b1c77b54
parentab0ef05ddad3ffe0297ed8676489b6d4febc7dec (diff)
downloadlibunwind-pie-qpr3-s1-release.tar.gz
Fix error when compiled without LZMA support. Test: N/A Change-Id: I0db4630c398e9e91de93b51378485bdcdcc66b4e
-rw-r--r--src/elfxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/elfxx.c b/src/elfxx.c
index 057a3baf..a0500380 100644
--- a/src/elfxx.c
+++ b/src/elfxx.c
@@ -509,7 +509,7 @@ elf_w (xz_decompress) (uint8_t* src, size_t src_size,
*dst = realloc(*dst, *dst_size);
return true;
#else
- Debug (1, "Decompression failed - compiled without LZMA support.\n",
+ Debug (1, "Decompression failed - compiled without LZMA support.\n");
return false;
#endif // HAVE_LZMA
}