Skip to content

Commit 2af45ba

Browse files
committed
Fix unused param warning
1 parent 5c72d95 commit 2af45ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Nix/Exec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ callFunc fun arg = demand fun $ \fun' -> do
297297
when (length frames > 2000) $ throwError $ ErrorCall
298298
"Function call stack exhausted"
299299
case fun' of
300-
NVClosure params f -> do
300+
NVClosure _params f -> do
301301
f arg
302302
NVBuiltin name f -> do
303303
span <- currentPos

0 commit comments

Comments
 (0)