From 58e0dcb93dc2b2bf49f76c754bd216dbdf875a0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20M=C3=A4kel=C3=A4?= Date: Mon, 30 Oct 2017 10:06:47 +0200 Subject: Add a missing space to an error message --- storage/innobase/os/os0file.cc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/storage/innobase/os/os0file.cc b/storage/innobase/os/os0file.cc index 44b78dabf87..cc687816ae8 100644 --- a/storage/innobase/os/os0file.cc +++ b/storage/innobase/os/os0file.cc @@ -5365,8 +5365,9 @@ fallback: if (is_sparse) { bool success = !ftruncate(file, size); if (!success) { - ib::error() << "ftruncate of file " << name << - " to " << size << " bytes failed with error " << errno; + ib::error() << "ftruncate of file " << name << " to " + << size << " bytes failed with error " + << errno; } return(success); } @@ -5382,9 +5383,9 @@ fallback: && srv_shutdown_state == SRV_SHUTDOWN_NONE); if (err) { - ib::error() << - "preallocating " << size << " bytes for" << - "file " << name << " failed with error " << err; + ib::error() << "preallocating " + << size << " bytes for file " << name + << " failed with error " << err; } errno = err; return(!err); -- cgit v1.2.1