From 99d6dd6f0499ea1e1fed36030e96489ff18eec74 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 10 Apr 2005 14:39:05 +0000 Subject: [PATCH] renamed set_bit to cow_set_bit (Paul Brook) --- block-cow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/block-cow.c b/block-cow.c index 81bd334cc1..15270dfd3f 100644 --- a/block-cow.c +++ b/block-cow.c @@ -124,7 +124,7 @@ static int cow_open(BlockDriverState *bs, const char *filename) return -1; } -static inline void set_bit(uint8_t *bitmap, int64_t bitnum) +static inline void cow_set_bit(uint8_t *bitmap, int64_t bitnum) { bitmap[bitnum / 8] |= (1 << (bitnum%8)); } @@ -198,7 +198,7 @@ static int cow_write(BlockDriverState *bs, int64_t sector_num, if (ret != nb_sectors * 512) return -1; for (i = 0; i < nb_sectors; i++) - set_bit(s->cow_bitmap, sector_num + i); + cow_set_bit(s->cow_bitmap, sector_num + i); return 0; } -- 2.11.4.GIT