From 1802aa00409b9152a70776a7520894b0e2df9427 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 14 Jun 2025 17:56:01 +0300 Subject: [PATCH] ; * src/profiler.c (export_log): Fix whitespace (bug#78762). (cherry picked from commit 69254cd51a1cdf8a67f2c10421c098cf907c0125) --- src/profiler.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/profiler.c b/src/profiler.c index f421eb52b31..6d6769b0cdd 100644 --- a/src/profiler.c +++ b/src/profiler.c @@ -560,7 +560,9 @@ before returning. */) static Lisp_Object export_log (struct profiler_log *plog) { - if (!plog->log) return Qnil; + if (!plog->log) + return Qnil; + log_t *log = plog->log; /* The returned hash table uses `equal' as key equivalence predicate which is more discriminating than the `function-equal' used by -- 2.39.5