summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2017-10-30 10:06:47 +0200
committerMarko Mäkelä <marko.makela@mariadb.com>2017-10-30 10:06:47 +0200
commit58e0dcb93dc2b2bf49f76c754bd216dbdf875a0d (patch)
tree9e391df348d422615168c6a24d2cbb79b9805d9f
parentde6bfbd5e9e2b269767ac0859f3b6bfacec10e12 (diff)
downloadmariadb-git-58e0dcb93dc2b2bf49f76c754bd216dbdf875a0d.tar.gz
Add a missing space to an error messagemariadb-10.2.10
-rw-r--r--storage/innobase/os/os0file.cc11
1 files 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);