From f5978aef79c78901885bac35c72843405252b279 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Thu, 23 Apr 2020 03:56:02 +0200 Subject: [PATCH] Remove accidental semicolon Reported by clang. --- src/avp/stratdef.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/avp/stratdef.c b/src/avp/stratdef.c index 1e670d6..7ece099 100644 --- a/src/avp/stratdef.c +++ b/src/avp/stratdef.c @@ -191,7 +191,7 @@ STRATEGYBLOCK * AttachNewStratBlock InitialiseSBValues(sptr); - for(i = 0; i < SB_NAME_LENGTH; i++); + for(i = 0; i < SB_NAME_LENGTH; i++) { sptr->SBname[i] = '\0'; }