From 9e881a497e619fc97cbb48a3a163e0eea23fbd52 Mon Sep 17 00:00:00 2001 From: Jesse Rosenstock Date: Fri, 3 Jul 2020 07:57:53 +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 ea5329335..dba4915f2 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