From 272b70298e357ceb6f6a7743c02c689106017116 Mon Sep 17 00:00:00 2001 From: Ben Judd Date: Mon, 19 Apr 2021 11:53:19 -0700 Subject: [PATCH] elif over "else if" --- src/commands.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.cc b/src/commands.cc index 652399bb..30b0795a 100644 --- a/src/commands.cc +++ b/src/commands.cc @@ -1450,7 +1450,7 @@ const CommandDesc debug_cmd = { write_to_debug_buffer(format(" Total: {}", total)); #if defined(__GLIBC__) && (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 33)) write_to_debug_buffer(format(" Malloced: {}", mallinfo2().uordblks)); - #else if defined(__GLIBC__) || defined(__CYGWIN__) + #elif defined(__GLIBC__) || defined(__CYGWIN__) write_to_debug_buffer(format(" Malloced: {}", mallinfo().uordblks)); #endif }