diff options
author | Volker Lendecke <vl@samba.org> | 2009-08-07 12:09:21 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-08-07 13:02:15 +0200 |
commit | 8300b255a5f88cc4ca23678595810d7caec50a00 (patch) | |
tree | 36410b2d74e0eb8f3c4f80a6056db21b9d10061d /source3/lib/bitmap.c | |
parent | 558ff911df1e16e28e3a1efa0849c9083d08c617 (diff) | |
download | samba-8300b255a5f88cc4ca23678595810d7caec50a00.tar.gz samba-8300b255a5f88cc4ca23678595810d7caec50a00.tar.xz samba-8300b255a5f88cc4ca23678595810d7caec50a00.zip |
Fix some nonempty blank lines
Diffstat (limited to 'source3/lib/bitmap.c')
-rw-r--r-- | source3/lib/bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/bitmap.c b/source3/lib/bitmap.c index 5e623f474ab..f753ffd5348 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) { |