summaryrefslogtreecommitdiff
path: root/src/fsyncport.erl
diff options
context:
space:
mode:
authorLinus Nordberg <linus@nordu.net>2015-11-11 13:13:40 +0100
committerLinus Nordberg <linus@nordu.net>2015-11-11 13:32:37 +0100
commit6e3594680b278fe46cef7e7df2996af2c2bb30cb (patch)
treec9e6b71feeef87207fb1eb84d08c0ccbcbb9b3d0 /src/fsyncport.erl
parentabea7a627f833d4b3d32151ae25c9f9bffdbab09 (diff)
Get rid of warnings of unused functions and arguments.
Diffstat (limited to 'src/fsyncport.erl')
-rw-r--r--src/fsyncport.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsyncport.erl b/src/fsyncport.erl
index ef8b37f..f6a8ae3 100644
--- a/src/fsyncport.erl
+++ b/src/fsyncport.erl
@@ -19,7 +19,7 @@ stop() ->
fsync(Path) ->
gen_server:call(?MODULE, {fsync, [Path]}).
-fsyncall([], Timeout) ->
+fsyncall([], _Timeout) ->
ok;
fsyncall(Paths, Timeout) ->
gen_server:call(?MODULE, {fsync, Paths}, Timeout).