summary refs log tree commit diff
path: root/lib
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
parentfccbb2a9e6bf059f67953f557d7a777b2e510511 (diff)
downloadnixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar.gz
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar.bz2
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar.lz
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar.xz
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.tar.zst
nixlib-5a9ba174bde89a1c6ce25aebab6bce42f1bafc93.zip
lib.debug: fix traceValSeqFn
was calling the wrong parent version.
Diffstat (limited to 'lib')
-rw-r--r--lib/debug.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/debug.nix b/lib/debug.nix
index 91a9265a6b5e..383eb32d75d0 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`. */