From c273c90bf22b087806f1b6d783b8666263f8766e Mon Sep 17 00:00:00 2001 From: Jesse Rosenstock Date: Fri, 3 Jul 2020 07:56:05 +0200 Subject: [PATCH] Fix formatting --- src/cl65/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cl65/main.c b/src/cl65/main.c index f75200c89..ea5329335 100644 --- a/src/cl65/main.c +++ b/src/cl65/main.c @@ -321,7 +321,7 @@ static void CmdAddFile (CmdDesc* Cmd, const char* File) /* Expand the file vector if needed */ if (Cmd->FileCount == Cmd->FileMax) { Cmd->FileMax += 10; - Cmd->Files = xrealloc(Cmd->Files, Cmd->FileMax * sizeof(char*)); + Cmd->Files = xrealloc (Cmd->Files, Cmd->FileMax * sizeof(char*)); } /* If the file name is not NULL (which is legal and is used to terminate