winedbg: Avoid a compiler warning about "use of uninitialized" in in types_extract_as_longlong.

This commit is contained in:
Gerald Pfeifer 2014-08-24 00:40:56 +02:00 committed by Alexandre Julliard
parent 42afdebc43
commit ab8e9d23a0
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ LONGLONG types_extract_as_longlong(const struct dbg_lvalue* lvalue,
default:
WINE_FIXME("Unsupported tag %u\n", tag);
RaiseException(DEBUG_STATUS_NOT_AN_INTEGER, 0, 0, NULL);
break;
rtn = 0;
}
return rtn;