Minor fix in error message
This commit is contained in:
parent
96172158e5
commit
77c44b0f04
|
@ -502,7 +502,7 @@ code_declaration(idf, expr, lvl, sc)
|
||||||
break;
|
break;
|
||||||
case EXTERN:
|
case EXTERN:
|
||||||
if (expr && !is_anon_idf(idf) && level != L_GLOBAL)
|
if (expr && !is_anon_idf(idf) && level != L_GLOBAL)
|
||||||
error("cannot initialize extern in block"
|
error("cannot initialize extern %s in block"
|
||||||
, idf->id_text);
|
, idf->id_text);
|
||||||
case GLOBAL:
|
case GLOBAL:
|
||||||
/* we are sure there is no expression */
|
/* we are sure there is no expression */
|
||||||
|
|
Loading…
Reference in a new issue