Module: wine Branch: master Commit: bf36cf284eb97e19f8e271b3bd8e66fdab11b8e7 URL: http://source.winehq.org/git/wine.git/?a=commit;h=bf36cf284eb97e19f8e271b3bd...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Sat Sep 28 08:44:58 2013 +0200
wmc: Use BOOL type where appropriate.
---
tools/wmc/po.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/tools/wmc/po.c b/tools/wmc/po.c index de15e24..489c7d4 100644 --- a/tools/wmc/po.c +++ b/tools/wmc/po.c @@ -297,7 +297,7 @@ static void po_xerror2( int severity, po_message_t message1,
static const struct po_xerror_handler po_xerror_handler = { po_xerror, po_xerror2 };
-static int is_english( int lan ) +static BOOL is_english( int lan ) { return lan == MAKELANGID( LANG_ENGLISH, SUBLANG_DEFAULT ); }