wpp: Remove variable dbgtext which is not really used frommake_number.

This commit is contained in:
Gerald Pfeifer 2010-04-24 12:13:33 +02:00 committed by Alexandre Julliard
parent f2d7cbc90c
commit b52eef9511
1 changed files with 0 additions and 3 deletions

View File

@ -961,7 +961,6 @@ static int make_number(int radix, YYSTYPE *val, const char *str, int len)
*/ */
static void expand_special(pp_entry_t *ppp) static void expand_special(pp_entry_t *ppp)
{ {
const char *dbgtext = "?";
static char *buf = NULL; static char *buf = NULL;
char *new_buf; char *new_buf;
@ -969,7 +968,6 @@ static void expand_special(pp_entry_t *ppp)
if(!strcmp(ppp->ident, "__LINE__")) if(!strcmp(ppp->ident, "__LINE__"))
{ {
dbgtext = "def_special(__LINE__)";
new_buf = pp_xrealloc(buf, 32); new_buf = pp_xrealloc(buf, 32);
if(!new_buf) if(!new_buf)
return; return;
@ -978,7 +976,6 @@ static void expand_special(pp_entry_t *ppp)
} }
else if(!strcmp(ppp->ident, "__FILE__")) else if(!strcmp(ppp->ident, "__FILE__"))
{ {
dbgtext = "def_special(__FILE__)";
new_buf = pp_xrealloc(buf, strlen(pp_status.input) + 3); new_buf = pp_xrealloc(buf, strlen(pp_status.input) + 3);
if(!new_buf) if(!new_buf)
return; return;