diff options
Diffstat (limited to 'file_index.cc')
-rw-r--r-- | file_index.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/file_index.cc b/file_index.cc index 0e3eed9..7e265a1 100644 --- a/file_index.cc +++ b/file_index.cc @@ -40,7 +40,7 @@ int seek_read( const int fd, uint8_t * const buf, const int size, void File_index::set_errno_error( const char * const msg ) { - error_ = msg; error_ += std::strerror( errno ); error_ += '.'; + error_ = msg; error_ += std::strerror( errno ); retval_ = 1; } |