diff options
| author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-26 15:37:46 +0000 |
|---|---|---|
| committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-26 15:37:46 +0000 |
| commit | 71c2fd5cdfa1106e109c2554d511bdb3bcdccb05 (patch) | |
| tree | 2420c8f78c27dc309a623760bf7f00955e3ce770 | |
| parent | df5cf721605327427e4c033f75fd0875486c109f (diff) | |
| download | focaccia-qemu-71c2fd5cdfa1106e109c2554d511bdb3bcdccb05.tar.gz focaccia-qemu-71c2fd5cdfa1106e109c2554d511bdb3bcdccb05.zip | |
Define ENOMEDIUM to match ENODEV if it isn't available.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2357 c046a42c-6fe2-441c-8c8c-71466251a162
| -rw-r--r-- | block.c | 4 | ||||
| -rw-r--r-- | vl.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/block.c b/block.c index dfa1edc3ca..9264e42a63 100644 --- a/block.c +++ b/block.c @@ -35,10 +35,6 @@ #define SECTOR_BITS 9 #define SECTOR_SIZE (1 << SECTOR_BITS) -#ifndef ENOMEDIUM -#define ENOMEDIUM ENODEV -#endif - typedef struct BlockDriverAIOCBSync { BlockDriverAIOCB common; QEMUBH *bh; diff --git a/vl.h b/vl.h index 5a99ed53bf..c0df579551 100644 --- a/vl.h +++ b/vl.h @@ -48,6 +48,9 @@ #ifdef __sun__ #define ENOMEDIUM 4097 #endif +#ifndef ENOMEDIUM +#define ENOMEDIUM ENODEV +#endif #ifdef _WIN32 #include <windows.h> |