From 69ce75076cc1b9bfc4d5b9a8bd8a7a5809e5a812 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Mon, 12 Jul 2010 15:19:17 +0400 Subject: No need for \n at __OUTPUT_FORMAT__ macro end Signed-off-by: Cyrill Gorcunov --- nasm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nasm.c b/nasm.c index 18548a8c..9a8c1e5d 100644 --- a/nasm.c +++ b/nasm.c @@ -261,7 +261,7 @@ static void define_macros_late(void) { char temp[128]; - snprintf(temp, sizeof(temp), "__OUTPUT_FORMAT__=%s\n", + snprintf(temp, sizeof(temp), "__OUTPUT_FORMAT__=%s", ofmt->shortname); pp_pre_define(temp); } -- cgit v1.2.1