diff --git a/collects/mztake/demos/sprofiler/sprofiler-mztake.ss b/collects/mztake/demos/sprofiler/sprofiler-mztake.ss index 9de1e4c979..a54ec49454 100644 --- a/collects/mztake/demos/sprofiler/sprofiler-mztake.ss +++ b/collects/mztake/demos/sprofiler/sprofiler-mztake.ss @@ -10,10 +10,10 @@ (define pings (make-hash 'equal)) -(for-each-e (where) - (match-lambda [(line function context rest ...) - (hash-table-increment! pings (list function context))] - [_ (void)])) +(for-each-e! (where) + (match-lambda [(line function context rest ...) + (hash-table-increment! pings (list function context))] + [_ (void)])) (define clicks (changes (quotient milliseconds 50)))