about summary refs log tree commit diff
path: root/lib/debug.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2018-07-15 09:36:08 +0900
committerMatthieu Coudron <mattator@gmail.com>2018-07-15 09:36:08 +0900
commit5a9ba174bde89a1c6ce25aebab6bce42f1bafc93 (patch)
tree2b024f1255a0471ac933cccd5c9139d8df5c7936 /lib/debug.nix
parentfccbb2a9e6bf059f67953f557d7a777b2e510511 (diff)
lib.debug: fix traceValSeqFn
was calling the wrong parent version.
Diffstat (limited to 'lib/debug.nix')
-rw-r--r--lib/debug.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.nix b/lib/debug.nix
index 91a9265a6b5e6..383eb32d75d0d 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`. */