diff options
author | 2010-01-16 04:12:04 +0000 | |
---|---|---|
committer | 2010-01-16 04:12:04 +0000 | |
commit | aebc07a8971238b115210e89eca8e7824eca8dbc (patch) | |
tree | a7157331b3813365da7703902380ac6309f5e934 /src/lib/util/bitmap.c | |
parent | f6c832ea90a9c69c95b4006ff328867bb41ebe5c (diff) |
Cleanups and version bump.
Diffstat (limited to 'src/lib/util/bitmap.c')
-rw-r--r-- | src/lib/util/bitmap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/util/bitmap.c b/src/lib/util/bitmap.c index 3f40e9f3a20..0f9eac3769e 100644 --- a/src/lib/util/bitmap.c +++ b/src/lib/util/bitmap.c @@ -308,8 +308,8 @@ void bitmap_free(bitmap_t *bitmap) /*------------------------------------------------- - bitmap_clone_existing -- clone an existing - bitmap by copying its fields; the target + bitmap_clone_existing -- clone an existing + bitmap by copying its fields; the target bitmap does not own the memory -------------------------------------------------*/ @@ -318,7 +318,7 @@ void bitmap_clone_existing(bitmap_t *bitmap, const bitmap_t *srcbitmap) if (bitmap->alloc != NULL) free(bitmap->alloc); bitmap->alloc = NULL; - + bitmap->base = srcbitmap->base; bitmap->rowpixels = srcbitmap->rowpixels; bitmap->width = srcbitmap->width; |