expr: paper over a maybe-uninitialized warning

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2017-09-08 12:16:13 +03:00
parent 14686cd1a8
commit 41f1018897
1 changed files with 2 additions and 2 deletions

View File

@ -510,8 +510,8 @@ ExprResolveMaskLookup(struct xkb_context *ctx, const ExprDef *expr,
unsigned int *val_rtrn, IdentLookupFunc lookup,
const void *lookupPriv)
{
bool ok = 0;
unsigned int l, r;
bool ok = false;
unsigned int l = 0, r = 0;
int v;
ExprDef *left, *right;
const char *bogus = NULL;