summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/pbd/malign.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/pbd/malign.cc b/libs/pbd/malign.cc
index e9695cd91c..4be9f0a9e8 100644
--- a/libs/pbd/malign.cc
+++ b/libs/pbd/malign.cc
@@ -47,8 +47,6 @@ int cache_aligned_malloc (void** memptr, size_t size)
return 0;
}
#else
- std::string << string_compose (_("Memory allocation error: malloc (%1 * %2)"),
- CPU_CACHE_ALIGN, size) << endmsg;
if (((*memptr) = malloc (size)) == 0) {
fatal << string_compose (_("Memory allocation error: malloc (%1 * %2) failed (%3)"),
CPU_CACHE_ALIGN, size, strerror (errno)) << endmsg;
@@ -113,4 +111,4 @@ void aligned_free (void* memptr)
#else
free (memptr);
#endif
-} \ No newline at end of file
+}