summary refs log tree commit diff stats
path: root/hw/hd-geometry.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/hd-geometry.c')
-rw-r--r--hw/hd-geometry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/hd-geometry.c b/hw/hd-geometry.c
index 4d746b7155..7626cbbe9c 100644
--- a/hw/hd-geometry.c
+++ b/hw/hd-geometry.c
@@ -98,7 +98,7 @@ static int guess_disk_lchs(BlockDriverState *bs,
 }
 
 static void guess_chs_for_size(BlockDriverState *bs,
-                               int *pcyls, int *pheads, int *psecs)
+                uint32_t *pcyls, uint32_t *pheads, uint32_t *psecs)
 {
     uint64_t nb_sectors;
     int cylinders;
@@ -117,7 +117,7 @@ static void guess_chs_for_size(BlockDriverState *bs,
 }
 
 void hd_geometry_guess(BlockDriverState *bs,
-                       int *pcyls, int *pheads, int *psecs,
+                       uint32_t *pcyls, uint32_t *pheads, uint32_t *psecs,
                        int *ptrans)
 {
     int cylinders, heads, secs, translation;