diff options
author | Michael Adam <obnox@samba.org> | 2013-01-05 01:19:06 +0100 |
---|---|---|
committer | Amitay Isaacs <amitay@gmail.com> | 2013-04-24 18:47:14 +1000 |
commit | ebc77602fc0397b19ddbf702270e8516fe3d1437 (patch) | |
tree | 85e48b49605ee46d1cf7cc174cd25bab59a5ada5 | |
parent | 9778ce4b068773eceebceaf0705750f756d30fe8 (diff) | |
download | samba-ebc77602fc0397b19ddbf702270e8516fe3d1437.tar.gz samba-ebc77602fc0397b19ddbf702270e8516fe3d1437.tar.xz samba-ebc77602fc0397b19ddbf702270e8516fe3d1437.zip |
vacuum: fix indentation in ctdb_process_delete_list()
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-By: Amitay Isaacs <amitay@gmail.com>
(This used to be ctdb commit 59a887e12469266e514ad7d4e34810e7ea888ba3)
-rw-r--r-- | ctdb/server/ctdb_vacuum.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctdb/server/ctdb_vacuum.c b/ctdb/server/ctdb_vacuum.c index 406af1dd5b6..f829a67b2a3 100644 --- a/ctdb/server/ctdb_vacuum.c +++ b/ctdb/server/ctdb_vacuum.c @@ -732,8 +732,8 @@ static int ctdb_process_delete_list(struct ctdb_db_context *ctdb_db, return -1; } recs->records = (struct ctdb_marshall_buffer *) - talloc_zero_size(vdata, - offsetof(struct ctdb_marshall_buffer, data)); + talloc_zero_size(recs, + offsetof(struct ctdb_marshall_buffer, data)); if (recs->records == NULL) { DEBUG(DEBUG_ERR,(__location__ " Out of memory\n")); ret = -1; |