summaryrefslogtreecommitdiff
path: root/debug.c
diff options
context:
space:
mode:
authorS.H <[email protected]>2024-01-11 09:21:55 +0900
committerGitHub <[email protected]>2024-01-10 16:21:55 -0800
commita6ba45e9b0e224be350556299f3d890171117d9e (patch)
treec87b155ba909ba9563032f04ba647c63a3765ccb /debug.c
parentef751252711ca7ecabb3e4ad9214fa0d1d63608a (diff)
Remove unnecessary semicolons (#9469)
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug.c b/debug.c
index 605a399b65..c5b92cdd10 100644
--- a/debug.c
+++ b/debug.c
@@ -683,7 +683,7 @@ debug_log_dump(FILE *out, unsigned int n)
int index = current_index - size + i;
if (index < 0) index += MAX_DEBUG_LOG;
VM_ASSERT(index <= MAX_DEBUG_LOG);
- const char *mesg = RUBY_DEBUG_LOG_MEM_ENTRY(index);;
+ const char *mesg = RUBY_DEBUG_LOG_MEM_ENTRY(index);
fprintf(out, "%4u: %s\n", debug_log.cnt - size + i, mesg);
}
}