diff options
| author | Peter Maydell | 2012-01-06 19:47:21 +0100 |
|---|---|---|
| committer | Anthony Liguori | 2012-01-06 19:50:44 +0100 |
| commit | 2afee49fc4a366ab740899ec9e79079ec335e0fb (patch) | |
| tree | 9793be3ca588affc9c07d397d654d388a9a24c4f /hw/9pfs | |
| parent | Merge remote-tracking branch 'amit/master' into staging (diff) | |
| download | qemu-2afee49fc4a366ab740899ec9e79079ec335e0fb.tar.gz qemu-2afee49fc4a366ab740899ec9e79079ec335e0fb.tar.xz qemu-2afee49fc4a366ab740899ec9e79079ec335e0fb.zip | |
virtio-9p-proxy: Fix typo causing compile failure on 32 bit hosts
Fix a compile failure on 32 bit hosts (integer constant is too large
for 'unsigned long' type) by correcting a typo where the mask used
for filling in the second f_fsid word had too many 'F's in it.
Also drop the 'L' suffix that allowed this typo to go undetected on
64 bit hosts.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/9pfs')
| -rw-r--r-- | hw/9pfs/virtio-9p-proxy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/9pfs/virtio-9p-proxy.c b/hw/9pfs/virtio-9p-proxy.c index 44f5fc4f7e..d5ad208d00 100644 --- a/hw/9pfs/virtio-9p-proxy.c +++ b/hw/9pfs/virtio-9p-proxy.c @@ -112,8 +112,8 @@ static void prstatfs_to_statfs(struct statfs *stfs, ProxyStatFS *prstfs) stfs->f_bavail = prstfs->f_bavail; stfs->f_files = prstfs->f_files; stfs->f_ffree = prstfs->f_ffree; - stfs->f_fsid.__val[0] = prstfs->f_fsid[0] & 0xFFFFFFFFUL; - stfs->f_fsid.__val[1] = prstfs->f_fsid[1] >> 32 & 0xFFFFFFFFFUL; + stfs->f_fsid.__val[0] = prstfs->f_fsid[0] & 0xFFFFFFFFU; + stfs->f_fsid.__val[1] = prstfs->f_fsid[1] >> 32 & 0xFFFFFFFFU; stfs->f_namelen = prstfs->f_namelen; stfs->f_frsize = prstfs->f_frsize; } |
