projects
/
reactos.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix usage of the first parameter for TranslateAccelerator: this should be the handle...
[reactos.git]
/
reactos
/
boot
/
freeldr
/
fdebug
/
fdebug.c
diff --git
a/reactos/boot/freeldr/fdebug/fdebug.c
b/reactos/boot/freeldr/fdebug/fdebug.c
index
9db43a8
..
4f8e7f0
100644
(file)
--- a/
reactos/boot/freeldr/fdebug/fdebug.c
+++ b/
reactos/boot/freeldr/fdebug/fdebug.c
@@
-67,7
+67,7
@@
int APIENTRY _tWinMain(HINSTANCE hInstance,
// Main message loop:
while (GetMessage(&msg, NULL, 0, 0))
{
- if (!TranslateAccelerator(
msg.hw
nd, hAccelTable, &msg))
+ if (!TranslateAccelerator(
hMainW
nd, hAccelTable, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);