diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/filesystem.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/filesystem.c b/src/filesystem.c index f6e6961..0fc2318 100644 --- a/src/filesystem.c +++ b/src/filesystem.c @@ -391,6 +391,9 @@ lilv_flock(FILE* file, bool lock, bool block) return flock(fileno(file), (lock ? LOCK_EX : LOCK_UN) | (block ? 0 : LOCK_NB)); #else + (void)file; + (void)lock; + (void)block; return 0; #endif } |