Module: wine Branch: master Commit: 34ad2d20a22e5f983b911feed10d811a3aa4f8e3 URL: http://source.winehq.org/git/wine.git/?a=commit;h=34ad2d20a22e5f983b911feed1...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Tue Oct 15 00:27:17 2013 +0200
win87em.dll16: Use BOOL type where appropriate.
---
dlls/win87em.dll16/win87em.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/win87em.dll16/win87em.c b/dlls/win87em.dll16/win87em.c index 6154ac6..c8d4545 100644 --- a/dlls/win87em.dll16/win87em.c +++ b/dlls/win87em.dll16/win87em.c @@ -45,7 +45,7 @@ struct Win87EmInfoStruct */ /* FIXME: Still rather skeletal implementation only */
-static BOOL Installed = 1; /* 8087 is installed */ +static BOOL Installed = TRUE; /* 8087 is installed */ static WORD RefCount = 0; static WORD CtrlWord_1 = 0; static WORD CtrlWord_2 = 0;