From: H. Peter Anvin Date: Tue, 14 May 2002 17:44:03 +0000 (+0000) Subject: Change __error (reserved namespace) to _error (normal namespace) X-Git-Tag: nasm-2.11.05~2432 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=99941bf0675b8bee145145e043e0281acdab16ec;p=platform%2Fupstream%2Fnasm.git Change __error (reserved namespace) to _error (normal namespace) --- diff --git a/preproc.c b/preproc.c index 4fad1c1..c9cecd8 100644 --- a/preproc.c +++ b/preproc.c @@ -346,7 +346,7 @@ static Context *cstk; static Include *istk; static IncPath *ipath = NULL; -static efunc __error; /* Pointer to client-provided error reporting function */ +static efunc _error; /* Pointer to client-provided error reporting function */ static evalfunc evaluate; static int pass; /* HACK: pass 0 = generate dependencies only */ @@ -4018,10 +4018,10 @@ error(int severity, char *fmt, ...) va_end(arg); if (istk && istk->mstk && istk->mstk->name) - __error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name, + _error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name, istk->mstk->lineno, buff); else - __error(severity | ERR_PASS1, "%s", buff); + _error(severity | ERR_PASS1, "%s", buff); } static void @@ -4030,7 +4030,7 @@ pp_reset(char *file, int apass, efunc errfunc, evalfunc eval, { int h; - __error = errfunc; + _error = errfunc; cstk = NULL; istk = nasm_malloc(sizeof(Include)); istk->next = NULL;