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

View File

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