lib.debug: fix traceValSeqFn

was calling the wrong parent version.
This commit is contained in:
Matthieu Coudron 2018-07-15 09:36:08 +09:00
parent fccbb2a9e6
commit 5a9ba174bd

View file

@ -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`. */