mirror of
https://github.com/danbulant/node-x11
synced 2026-05-20 04:48:56 +00:00
global variable pollution fix
This commit is contained in:
parent
cfbf71c6b8
commit
313aa8a1cc
1 changed files with 1 additions and 1 deletions
|
|
@ -164,7 +164,7 @@ module.exports = {
|
|||
// TODO: maybe it's better just to scan all 32 bits anstead of sorting parameters we are actually have?
|
||||
for (m in masksList)
|
||||
{
|
||||
valueName = valueMaskName['CreateWindow'][masksList[m]];
|
||||
var valueName = valueMaskName['CreateWindow'][masksList[m]];
|
||||
args.push( values[valueName] );
|
||||
}
|
||||
return [format, args];
|
||||
|
|
|
|||
Loading…
Reference in a new issue