Andrew Talbot : msvcrt: Remove unused variable.
Module: wine Branch: master Commit: bacd4516d69dff48943caa4d0a1875bc4828719a URL: http://source.winehq.org/git/wine.git/?a=commit;h=bacd4516d69dff48943caa4d0a... Author: Andrew Talbot <andrew.talbot(a)talbotville.com> Date: Tue Apr 22 22:04:43 2008 +0100 msvcrt: Remove unused variable. --- dlls/msvcrt/undname.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dlls/msvcrt/undname.c b/dlls/msvcrt/undname.c index 16991eb..93030b2 100644 --- a/dlls/msvcrt/undname.c +++ b/dlls/msvcrt/undname.c @@ -893,7 +893,6 @@ static BOOL handle_data(struct parsed_symbol* sym) struct datatype_t ct; char* name = NULL; BOOL ret = FALSE; - char dt; /* 0 private static * 1 protected static @@ -924,7 +923,7 @@ static BOOL handle_data(struct parsed_symbol* sym) name = get_class_string(sym, 0); - switch (dt = *sym->current++) + switch (*sym->current++) { case '0': case '1': case '2': case '3': case '4': case '5':
participants (1)
-
Alexandre Julliard