summaryrefslogtreecommitdiffstats
path: root/fsdev
diff options
context:
space:
mode:
authorAneesh Kumar K.V2011-12-21 08:07:23 +0100
committerAneesh Kumar K.V2011-12-21 08:07:23 +0100
commit2f008a8c97e2549da7337c98c53eae2d31f0d548 (patch)
tree000586a20f0bec98688f403696686038cb150889 /fsdev
parenthw/9pfs: replace iovec manipulation with QEMUIOVector (diff)
downloadqemu-2f008a8c97e2549da7337c98c53eae2d31f0d548.tar.gz
qemu-2f008a8c97e2549da7337c98c53eae2d31f0d548.tar.xz
qemu-2f008a8c97e2549da7337c98c53eae2d31f0d548.zip
hw/9pfs: Use the correct signed type for different variables
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Diffstat (limited to 'fsdev')
-rw-r--r--fsdev/file-op-9p.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fsdev/file-op-9p.h b/fsdev/file-op-9p.h
index a85ecd30b0..c823fe0aee 100644
--- a/fsdev/file-op-9p.h
+++ b/fsdev/file-op-9p.h
@@ -74,7 +74,7 @@ typedef struct FsContext
} FsContext;
typedef struct V9fsPath {
- int16_t size;
+ uint16_t size;
char *data;
} V9fsPath;