Remove a spurious warning as x is always initialised before use.

es137x.c: In function `es1371_rdcd':
es137x.c:598: warning: `x' might be used uninitialized in this function

PR:		kern/35408
Submitted by:	Thomas Quinot <thomas@cuivre.fr.eu.org>
This commit is contained in:
Ollivier Robert 2002-04-15 14:43:23 +00:00
parent 0f8af5c368
commit a8851d32b1

View File

@ -595,7 +595,7 @@ static int
es1371_rdcd(kobj_t obj, void *s, int addr)
{
int sl;
unsigned t, x;
unsigned t, x = 0;
struct es_info *es = (struct es_info *)s;
if (debug > 0) printf("rdcodec addr 0x%x ... ", addr);