Frédéric Delanoy : setupx.dll16: Use BOOL type where appropriate.
Module: wine Branch: master Commit: 2ba5cdd3f6582b2ac7ae51474f955edaf804e5df URL: http://source.winehq.org/git/wine.git/?a=commit;h=2ba5cdd3f6582b2ac7ae51474f... Author: Frédéric Delanoy <frederic.delanoy(a)gmail.com> Date: Sun Feb 23 19:23:21 2014 +0100 setupx.dll16: Use BOOL type where appropriate. --- dlls/setupx.dll16/infparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/setupx.dll16/infparse.c b/dlls/setupx.dll16/infparse.c index 0fbc25d..3d3a25f 100644 --- a/dlls/setupx.dll16/infparse.c +++ b/dlls/setupx.dll16/infparse.c @@ -136,7 +136,7 @@ static unsigned int string_subst( HINF hinf, const char *text, char *buffer ) { const char *start, *subst, *p; unsigned int len, total = 0; - int inside = 0; + BOOL inside = FALSE; unsigned int size = MAX_INF_STRING_LENGTH; char tmp[MAX_INF_STRING_LENGTH];
participants (1)
-
Alexandre Julliard