From f570fa414b6b5af1af26229dfd56a92175350530 Mon Sep 17 00:00:00 2001 From: Asher Baker Date: Tue, 12 Aug 2014 18:35:43 +0000 Subject: [PATCH] Reformatted compiler output a little. (r=dvander) --- sourcepawn/compiler/sc1.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sourcepawn/compiler/sc1.c b/sourcepawn/compiler/sc1.c index 8c64442d..6f07e61d 100644 --- a/sourcepawn/compiler/sc1.c +++ b/sourcepawn/compiler/sc1.c @@ -504,7 +504,7 @@ cleanup: pc_printf("Header size: %8ld bytes\n", (long)hdrsize); pc_printf("Code size: %8ld bytes\n", (long)code_idx); pc_printf("Data size: %8ld bytes\n", (long)glb_declared*sizeof(cell)); - pc_printf("Stack/heap size: %8ld bytes; ", (long)pc_stksize*sizeof(cell)); + pc_printf("Stack/heap size: %8ld bytes\n", (long)pc_stksize*sizeof(cell)); #if 0 pc_printf("estimated max. usage"); if (recursion) @@ -1269,7 +1269,8 @@ static void setconfig(char *root) static void setcaption(void) { pc_printf("SourcePawn Compiler %s\n", SOURCEMOD_VERSION); - pc_printf("Copyright (c) 1997-2006, ITB CompuPhase, (C)2004-2014 AlliedModders, LLC\n\n"); + pc_printf("Copyright (c) 1997-2006 ITB CompuPhase\n"); + pc_printf("Copyright (c) 2004-2014 AlliedModders LLC\n\n"); } static void about(void)