diff options
author | Michael Adam <obnox@samba.org> | 2008-03-26 10:55:26 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-03-26 11:15:04 +0100 |
commit | a8d7febc7a04d63387667d76d683c5d6943197dd (patch) | |
tree | b61e390f7f6c33885efe4d821cc400950ec0a410 /source3/lib/smbconf | |
parent | f1c844c16806d41256fe442fb0fbd237dfef9e1f (diff) | |
download | samba-a8d7febc7a04d63387667d76d683c5d6943197dd.tar.gz samba-a8d7febc7a04d63387667d76d683c5d6943197dd.tar.bz2 samba-a8d7febc7a04d63387667d76d683c5d6943197dd.zip |
smbconf: reformat - fix intentation.
This time this won't make me stumble, since there is no
magic in indented function headers here - no automatic
prototype generation... :-)
Michael
(This used to be commit 6d72fc4373adff01cf6e0e18f78082d1eab90064)
Diffstat (limited to 'source3/lib/smbconf')
-rw-r--r-- | source3/lib/smbconf/smbconf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/lib/smbconf/smbconf.c b/source3/lib/smbconf/smbconf.c index 756b9ec3ca..4315dd990e 100644 --- a/source3/lib/smbconf/smbconf.c +++ b/source3/lib/smbconf/smbconf.c @@ -51,10 +51,10 @@ static WERROR smbconf_global_check(struct smbconf_ctx *ctx) /** * add a string to a talloced array of strings. */ - WERROR smbconf_add_string_to_array(TALLOC_CTX *mem_ctx, - char ***array, - uint32_t count, - const char *string) +WERROR smbconf_add_string_to_array(TALLOC_CTX *mem_ctx, + char ***array, + uint32_t count, + const char *string) { char **new_array = NULL; |