From: bellard Date: Mon, 3 Jan 2005 23:39:08 +0000 (+0000) Subject: gcc 2.x fix X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=995179f1ccb9fbc88b5af70614e5ae22bf43e506;p=qemu.git gcc 2.x fix git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1192 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/block-dmg.c b/block-dmg.c index af8b67b7ab..582e3cb2f0 100644 --- a/block-dmg.c +++ b/block-dmg.c @@ -109,10 +109,12 @@ dmg_close: /* read offsets */ last_in_offset = last_out_offset = 0; while(lseek(s->fd,0,SEEK_CUR)fd); if(count==0) goto dmg_close; - uint32_t type = read_uint32(s->fd); + type = read_uint32(s->fd); if(type!=0x6d697368 || count<244) lseek(s->fd,count-4,SEEK_CUR); else {