- Removed warnings from the compiler for conflicting types: not to
stdout anymore, but now in the normal tradition of eprintf and globalError.
This commit is contained in:
parent
7b3cb4dfb9
commit
fce9fae9c3
@ -306,9 +306,11 @@ defineUsertype (Tac tcdu)
|
|||||||
if (inTermlist (tfind->stype, TERM_Type))
|
if (inTermlist (tfind->stype, TERM_Type))
|
||||||
{
|
{
|
||||||
/* phew. warn anyway */
|
/* phew. warn anyway */
|
||||||
printf ("WARNING: double declaration of usertype ");
|
globalError++;
|
||||||
|
eprintf ("WARNING: double declaration of usertype ");
|
||||||
termPrint (tfind);
|
termPrint (tfind);
|
||||||
printf ("\n");
|
eprintf ("\n");
|
||||||
|
globalError--;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -1403,9 +1405,10 @@ compute_prec_sets (const System sys)
|
|||||||
//@todo This is for debugging, mainly.
|
//@todo This is for debugging, mainly.
|
||||||
if (cl->prec == NULL)
|
if (cl->prec == NULL)
|
||||||
{
|
{
|
||||||
fprintf (stderr,
|
globalError++;
|
||||||
"Warning: claim with empty prec() set at r:%i, ev:%i\n",
|
eprintf ("Warning: claim with empty prec() set at r:%i, ev:%i\n",
|
||||||
r1, ev1);
|
r1, ev1);
|
||||||
|
globalError--;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user