added 0x prefix to dword reg values
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4423 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b401625783
commit
8eb5de9e74
1 changed files with 1 additions and 1 deletions
|
@ -1183,7 +1183,7 @@ static int NSISCALL ExecuteEntry(entry *entry_)
|
||||||
{
|
{
|
||||||
*(LPDWORD) data = GetIntFromParm(3);
|
*(LPDWORD) data = GetIntFromParm(3);
|
||||||
size = sizeof(DWORD);
|
size = sizeof(DWORD);
|
||||||
log_printf5("WriteRegDWORD: \"%s\\%s\" \"%s\"=\"%08x\"",rkn,buf1,buf0,*(LPDWORD) data);
|
log_printf5("WriteRegDWORD: \"%s\\%s\" \"%s\"=\"0x%08x\"",rkn,buf1,buf0,*(LPDWORD) data);
|
||||||
}
|
}
|
||||||
if (type == REG_BINARY)
|
if (type == REG_BINARY)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue