Silence a warning about uninitialized variable (though it would be).

This commit is contained in:
Eric Anholt 2005-01-25 01:38:26 +00:00
parent 67eeede4e1
commit 8a1bee8ea9

View File

@ -1106,9 +1106,7 @@ ATIDRIGetBuffer(ATIScreenInfo *atis)
ATICardInfo *atic = atis->atic;
drmDMAReq dma;
drmBufPtr buf = NULL;
int indx = 0;
int size = 0;
int ret;
int indx = 0, size = 0, ret = 0;
TIMEOUT_LOCALS;
dma.context = atis->serverContext;