summaryrefslogtreecommitdiff
path: root/source3/lib/bitmap.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-08-07 12:09:21 +0200
committerVolker Lendecke <vl@samba.org>2009-08-07 13:02:15 +0200
commit8300b255a5f88cc4ca23678595810d7caec50a00 (patch)
tree36410b2d74e0eb8f3c4f80a6056db21b9d10061d /source3/lib/bitmap.c
parent558ff911df1e16e28e3a1efa0849c9083d08c617 (diff)
downloadsamba-8300b255a5f88cc4ca23678595810d7caec50a00.tar.gz
samba-8300b255a5f88cc4ca23678595810d7caec50a00.tar.bz2
samba-8300b255a5f88cc4ca23678595810d7caec50a00.zip
Fix some nonempty blank lines
Diffstat (limited to 'source3/lib/bitmap.c')
-rw-r--r--source3/lib/bitmap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/bitmap.c b/source3/lib/bitmap.c
index 5e623f474a..f753ffd534 100644
--- a/source3/lib/bitmap.c
+++ b/source3/lib/bitmap.c
@@ -32,7 +32,7 @@ struct bitmap *bitmap_allocate(int n)
bm = SMB_MALLOC_P(struct bitmap);
if (!bm) return NULL;
-
+
bm->n = n;
bm->b = SMB_MALLOC_ARRAY(uint32, (n+31)/32);
if (!bm->b) {
@@ -70,7 +70,7 @@ struct bitmap *bitmap_talloc(TALLOC_CTX *mem_ctx, int n)
bm = TALLOC_P(mem_ctx, struct bitmap);
if (!bm) return NULL;
-
+
bm->n = n;
bm->b = TALLOC_ARRAY(mem_ctx, uint32, (n+31)/32);
if (!bm->b) {