aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 030c6e06ba8..14baf291bd8 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -4542,9 +4542,9 @@ DEFUN ("gc-status", Fgc_status, Sgc_status, 0, 0, "",
4542 Lisp_Object zombie_list = Qnil; 4542 Lisp_Object zombie_list = Qnil;
4543 for (int i = 0; i < min (MAX_ZOMBIES, nzombies); i++) 4543 for (int i = 0; i < min (MAX_ZOMBIES, nzombies); i++)
4544 zombie_list = Fcons (zombies[i], zombie_list); 4544 zombie_list = Fcons (zombies[i], zombie_list);
4545 return CALLN (Fmessage, 4545 AUTO_STRING (format, ("%d GCs, avg live/zombies = %.2f/%.2f (%f%%),"
4546 build_string ("%d GCs, avg live/zombies = %.2f/%.2f" 4546 " max %d/%d\nzombies: %S"));
4547 " (%f%%), max %d/%d\nzombies: %S"), 4547 return CALLN (Fmessage, format,
4548 make_number (ngcs), make_float (avg_live), 4548 make_number (ngcs), make_float (avg_live),
4549 make_float (avg_zombies), 4549 make_float (avg_zombies),
4550 make_float (avg_zombies / avg_live / 100), 4550 make_float (avg_zombies / avg_live / 100),