lib.debug: fix traceValSeqFn

was calling the wrong parent version.

Changed files
+1 -1
lib
+1 -1
lib/debug.nix
···
(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`. */