Fix some nonempty blank lines
[ira/wip.git] / source3 / lib / bitmap.c
index 5e623f474abcd8e36fd8335385243be3f267ae2c..f753ffd5348a66eada1ac4d061b7d7110b1be6ab 100644 (file)
@@ -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) {