diff options
Diffstat (limited to 'src/common/compat.c')
-rw-r--r-- | src/common/compat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/compat.c b/src/common/compat.c index c3e42dbc20..7867c0b894 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -131,7 +131,7 @@ tor_mmap_file(const char *filename, size_t *size) *size += (page_size + (page_size-(*size%page_size))); string = mmap(0, *size, PROT_READ, MAP_PRIVATE, fd, 0); - if(string == MAP_FAILED) { + if (string == MAP_FAILED) { log_warn(LD_FS,"Could not mmap file \"%s\": %s", filename, strerror(errno)); return NULL; |