]> git.proxmox.com Git - mirror_qemu.git/blobdiff - util/range.c
Merge tag 'hppa-fixes-8.2-pull-request' of https://github.com/hdeller/qemu-hppa into...
[mirror_qemu.git] / util / range.c
index 9605ccfcbed9749dc8c2a665a037300c97981d28..f3f40098d547b99af662c0ec89f5eb312d296167 100644 (file)
@@ -98,7 +98,7 @@ void range_inverse_array(GList *in, GList **rev,
         out = append_new_range(out, low, MIN(range_lob(r) - 1, high));
     }
 
-    /* insert a range inbetween each original range until we reach high */
+    /* insert a range in between each original range until we reach high */
     for (; l->next; l = l->next) {
         r = (Range *)l->data;
         rn = (Range *)l->next->data;