From c3ec520071b3811e6e6c5865908763f9cbb04f08 Mon Sep 17 00:00:00 2001 From: kichik Date: Fri, 13 Aug 2004 19:28:25 +0000 Subject: [PATCH] patch #1005845 - Warning fix for bin2h.c git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3621 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/bin2h.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/bin2h.c b/Source/exehead/bin2h.c index 994b133c..dcf1690c 100644 --- a/Source/exehead/bin2h.c +++ b/Source/exehead/bin2h.c @@ -52,7 +52,7 @@ int main(int argc, char *argv[]) { total_bytes++; fprintf(out,"%i",c); } - fprintf(out,"};\n",token); + fprintf(out,"};\n"); fclose(in); fclose(out); fprintf(stderr,"%s -> %s (%d bytes)\n\n",argv[1],token,total_bytes);