summaryrefslogtreecommitdiff
path: root/source4/lib/util/data_blob.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-07-21 00:56:48 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:10:15 -0500
commitdc2715b49c477adb4ba95149a3bfdf79457fa6c0 (patch)
treebc6d61fd65fea42a68ccfb89891d7aa1471d593b /source4/lib/util/data_blob.c
parent48fac823d2cfd4c82c6a4ac232dfd15b51ac0616 (diff)
downloadsamba-dc2715b49c477adb4ba95149a3bfdf79457fa6c0.tar.gz
samba-dc2715b49c477adb4ba95149a3bfdf79457fa6c0.tar.bz2
samba-dc2715b49c477adb4ba95149a3bfdf79457fa6c0.zip
r17167: indent
(This used to be commit 4dcdc5a3ad6847be6c6199854121ae4ccadaa673)
Diffstat (limited to 'source4/lib/util/data_blob.c')
-rw-r--r--source4/lib/util/data_blob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/util/data_blob.c b/source4/lib/util/data_blob.c
index ac6589aa50..118d78ca60 100644
--- a/source4/lib/util/data_blob.c
+++ b/source4/lib/util/data_blob.c
@@ -206,7 +206,7 @@ _PUBLIC_ NTSTATUS data_blob_realloc(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, size_t
append some data to a data blob
**/
_PUBLIC_ NTSTATUS data_blob_append(TALLOC_CTX *mem_ctx, DATA_BLOB *blob,
- const void *p, size_t length)
+ const void *p, size_t length)
{
blob->data = talloc_realloc_size(mem_ctx, blob->data,
blob->length + length);