Kaydet (Commit) 2557b0f8 authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS warnings01 (1.3.42); FILE MERGED

2005/09/02 14:57:34 sb 1.3.42.1: #i53898# Made code warning-free.
üst c3839ed9
......@@ -373,7 +373,7 @@ void
tp->t[tp->len] = 0;
fprintf(stderr, "%s", tp->t);
tp->t[tp->len] = c;
tp->t[tp->len] = (uchar) c;
}
fprintf(stderr, tp == trp->tp ? "{%x*} " : "{%x} ", tp->type);
}
......@@ -513,7 +513,7 @@ char *
{
if (n >= 10)
p = outnum(p, n / 10);
*p++ = n % 10 + '0';
*p++ = (char) (n % 10 + '0');
return p;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment