hw/9pfs: Use the correct signed type for different variables

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
This commit is contained in:
Aneesh Kumar K.V 2011-12-21 12:37:23 +05:30
parent 302a0d3ed7
commit 2f008a8c97
4 changed files with 17 additions and 16 deletions

View file

@ -74,7 +74,7 @@ typedef struct FsContext
} FsContext;
typedef struct V9fsPath {
int16_t size;
uint16_t size;
char *data;
} V9fsPath;