From 13989c1965a9fb14bd50763bd577ee0ca057fe2b Mon Sep 17 00:00:00 2001 From: pabs3 Date: Fri, 27 Jul 2007 00:55:47 +0000 Subject: [PATCH] Prevent FTBFS due to using log_printf3 instead of log_printf2 git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5220 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/exehead/exec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/exehead/exec.c b/Source/exehead/exec.c index f04d21d6..5c9ed340 100644 --- a/Source/exehead/exec.c +++ b/Source/exehead/exec.c @@ -340,7 +340,7 @@ static int NSISCALL ExecuteEntry(entry *entry_) } else if ((GetFileAttributes(buf1) & FILE_ATTRIBUTE_DIRECTORY) == 0) { - log_printf3("CreateDirectory: can't create \"%s\" - a file already exists",buf); + log_printf2("CreateDirectory: can't create \"%s\" - a file already exists",buf); exec_error++; } }