summaryrefslogtreecommitdiffstats
path: root/fastos
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2016-07-08 09:46:40 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2016-07-08 09:46:40 +0200
commitb4c43f55abf29290536b1cac6305f6cd2813d948 (patch)
tree2c25723445f0ac7141e3881a27f172d109ab4e72 /fastos
parent492a5b1ca6efd15ba7b88a9717da8f393ec7461e (diff)
Add missing semicolon
Diffstat (limited to 'fastos')
-rw-r--r--fastos/src/vespa/fastos/unix_file.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fastos/src/vespa/fastos/unix_file.cpp b/fastos/src/vespa/fastos/unix_file.cpp
index 43cf14cafd9..340c258d95a 100644
--- a/fastos/src/vespa/fastos/unix_file.cpp
+++ b/fastos/src/vespa/fastos/unix_file.cpp
@@ -255,7 +255,7 @@ FastOS_UNIX_File::Close(void)
}
if (_mmapbase != NULL) {
- madvise(_mmapbase, _mmaplen, MADV_DONTNEED)
+ madvise(_mmapbase, _mmaplen, MADV_DONTNEED);
munmap(static_cast<char *>(_mmapbase), _mmaplen);
_mmapbase = NULL;
_mmaplen = 0;