summaryrefslogtreecommitdiff
path: root/block-vvfat.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2008-03-09 06:59:01 +0000
commit3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12 (patch)
treed9d3e5f4462517b179c20412b5ccccdab6fc660a /block-vvfat.c
parent19f329ad7b4131471183801ccfa74295698fa62e (diff)
downloadqemu-3f47aa8c37cf1ab86df03dcf3a91c6f7249bdc12.tar.gz
Fix some functions declared () rather than (void) (Ian Jackson)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4029 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block-vvfat.c')
-rw-r--r--block-vvfat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block-vvfat.c b/block-vvfat.c
index 873956d3b0..a93fde9702 100644
--- a/block-vvfat.c
+++ b/block-vvfat.c
@@ -53,7 +53,7 @@
#define stderr STDERR
FILE* stderr = NULL;
-static void checkpoint();
+static void checkpoint(void);
#ifdef __MINGW32__
void nonono(const char* file, int line, const char* msg) {
@@ -2813,7 +2813,7 @@ BlockDriver bdrv_vvfat = {
};
#ifdef DEBUG
-static void checkpoint() {
+static void checkpoint(void) {
assert(((mapping_t*)array_get(&(vvv->mapping), 0))->end == 2);
check1(vvv);
check2(vvv);