diff options
author | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:31:01 +0000 |
---|---|---|
committer | blueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-04-13 16:31:01 +0000 |
commit | 3f4cb3d37fb74db3580029624c8acd83dd5f4787 (patch) | |
tree | 3c6d13cb27ef0fb8d2ff465ba31d3b4647ec1c27 /block-vvfat.c | |
parent | 14d483eca0eb5f8b58b4b0317b734d485e4ca181 (diff) | |
download | qemu-3f4cb3d37fb74db3580029624c8acd83dd5f4787.tar.gz qemu-3f4cb3d37fb74db3580029624c8acd83dd5f4787.tar.bz2 qemu-3f4cb3d37fb74db3580029624c8acd83dd5f4787.zip |
Fix OpenSolaris gcc4 warnings: iovec type mismatches, missing 'static'
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7103 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block-vvfat.c')
-rw-r--r-- | block-vvfat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block-vvfat.c b/block-vvfat.c index 01e9c0400c..429c37c5e7 100644 --- a/block-vvfat.c +++ b/block-vvfat.c @@ -1778,7 +1778,7 @@ DLOG(fprintf(stderr, "read cluster %d (sector %d)\n", (int)cluster_num, (int)clu } for (i = 0; i < 0x10 * s->sectors_per_cluster; i++) { - int cluster_count; + int cluster_count = 0; DLOG(fprintf(stderr, "check direntry %d: \n", i); print_direntry(direntries + i)); if (is_volume_label(direntries + i) || is_dot(direntries + i) || |