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) { if (is_sparse) {
bool success = !ftruncate(file, size); bool success = !ftruncate(file, size);
if (!success) { if (!success) {
ib::error() << "ftruncate of file " << name << ib::error() << "ftruncate of file " << name << " to "
" to " << size << " bytes failed with error " << errno; << size << " bytes failed with error "
<< errno;
} }
return(success); return(success);
} }
@ -5382,9 +5383,9 @@ fallback:
&& srv_shutdown_state == SRV_SHUTDOWN_NONE); && srv_shutdown_state == SRV_SHUTDOWN_NONE);
if (err) { if (err) {
ib::error() << ib::error() << "preallocating "
"preallocating " << size << " bytes for" << << size << " bytes for file " << name
"file " << name << " failed with error " << err; << " failed with error " << err;
} }
errno = err; errno = err;
return(!err); return(!err);