Add a missing space to an error message

This commit is contained in:
Marko Mäkelä 2017-10-30 10:06:47 +02:00
parent de6bfbd5e9
commit 58e0dcb93d

View File

@ -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);