From 5a9ba174bde89a1c6ce25aebab6bce42f1bafc93 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Sun, 15 Jul 2018 09:36:08 +0900 Subject: [PATCH] lib.debug: fix traceValSeqFn was calling the wrong parent version. --- lib/debug.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/debug.nix b/lib/debug.nix index 91a9265a6b5..383eb32d75d 100644 --- a/lib/debug.nix +++ b/lib/debug.nix @@ -77,7 +77,7 @@ rec { (modify depth snip x)) y; /* A combination of `traceVal` and `traceSeq` */ - traceValSeqFn = f: v: traceVal f (builtins.deepSeq v v); + traceValSeqFn = f: v: traceValFn f (builtins.deepSeq v v); traceValSeq = traceValSeqFn id; /* A combination of `traceVal` and `traceSeqN`. */