From 21fa9b890c0f905e2d11c20c9fc66150db0280d9 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 8 Feb 2003 12:28:32 +0000 Subject: [PATCH] You ain't never seen this bug. That '_' was never there! git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2122 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 0e5ad5c3..e49c7c53 100644 --- a/Source/exehead/exec.c +++ b/Source/exehead/exec.c @@ -125,7 +125,7 @@ static int NSISCALL process_string_fromparm_toint(int id_) static char * NSISCALL process_string_fromparm_tobuf(int id_) { int id = id_ < 0 ? -id_ : id_; - char *result = process_string_fromtab(bufs[id_ >> 4], parms[id_ & 0xF]); + char *result = process_string_fromtab(bufs[id >> 4], parms[id & 0xF]); if (id_ < 0) validate_filename(result); return result; }