aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>2020-02-05 14:20:34 +0300
committerJohn Snow <jsnow@redhat.com>2020-03-18 14:03:46 -0400
commit30b8346cc3e1e9d73d55bb442e2b4a670dccd444 (patch)
treed57b33486e6ef211ca187edb317026682ac159c0 /util
parentbe24c7140cf9212de2a00b855939d049d7cb7554 (diff)
downloadqemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.zip
qemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.tar.gz
qemu-30b8346cc3e1e9d73d55bb442e2b4a670dccd444.tar.bz2
hbitmap: unpublish hbitmap_iter_skip_words
Function is internal and even commented as internal. Drop its definition from .h file. Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com> Message-id: 20200205112041.6003-4-vsementsov@virtuozzo.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'util')
-rw-r--r--util/hbitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/hbitmap.c b/util/hbitmap.c
index a368dc5..26145d4 100644
--- a/util/hbitmap.c
+++ b/util/hbitmap.c
@@ -104,7 +104,7 @@ struct HBitmap {
/* Advance hbi to the next nonzero word and return it. hbi->pos
* is updated. Returns zero if we reach the end of the bitmap.
*/
-unsigned long hbitmap_iter_skip_words(HBitmapIter *hbi)
+static unsigned long hbitmap_iter_skip_words(HBitmapIter *hbi)
{
size_t pos = hbi->pos;
const HBitmap *hb = hbi->hb;