mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
Filip and Richard are both smoking something.
Replaced syntax error and incorrect inversion. dwUnknown is a reserved parameter (dwReserved is more correct) that is never used, but it's still incorrect to pass 0 because we should respect what the user is sending us. svn path=/trunk/; revision=11958
This commit is contained in:
parent
67c8670a31
commit
de8be4fff6
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: misc.c,v 1.11 2004/12/06 07:14:47 rcampbell Exp $
|
/* $Id: misc.c,v 1.12 2004/12/06 08:41:38 ion Exp $
|
||||||
*
|
*
|
||||||
* PROJECT: ReactOS user32.dll
|
* PROJECT: ReactOS user32.dll
|
||||||
* FILE: lib/user32/misc/misc.c
|
* FILE: lib/user32/misc/misc.c
|
||||||
|
@ -113,5 +113,5 @@ UpdatePerUserSystemParameters(
|
||||||
DWORD dwReserved,
|
DWORD dwReserved,
|
||||||
BOOL bEnable)
|
BOOL bEnable)
|
||||||
{
|
{
|
||||||
return NtUserUpdatePerUserSystemParameters(0, dwReserved);
|
return NtUserUpdatePerUserSystemParameters(dwReserved, bEnable);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue