diff options
author | Jeremy Allison <jra@samba.org> | 2006-04-29 23:33:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:16:35 -0500 |
commit | ed0f36e2c2475bf9b8eb9c5d937799c85f32bd6f (patch) | |
tree | 04ad8ad6554ffa6bf9c2a5a59fa83462085466e7 /source | |
parent | 88b5a21d63b18af56b4fe7e5c353eae3ff7d4752 (diff) | |
download | samba-ed0f36e2c2475bf9b8eb9c5d937799c85f32bd6f.tar.gz samba-ed0f36e2c2475bf9b8eb9c5d937799c85f32bd6f.tar.xz samba-ed0f36e2c2475bf9b8eb9c5d937799c85f32bd6f.zip |
r15333: Paulg broke the function prototyping of decl_static_XX.
Needs to be (void), not (). Paulg please check this.
Jeremy.
Diffstat (limited to 'source')
-rw-r--r-- | source/aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/aclocal.m4 b/source/aclocal.m4 index cb8c7f00e21..91611233ca5 100644 --- a/source/aclocal.m4 +++ b/source/aclocal.m4 @@ -57,7 +57,7 @@ AC_DEFUN(SMB_MODULE, string_shared_modules="$string_shared_modules $1" elif test x"$DEST" = xSTATIC; then [init_static_modules_]translit([$4], [A-Z], [a-z])="$[init_static_modules_]translit([$4], [A-Z], [a-z]) $1_init();" - [decl_static_modules_]translit([$4], [A-Z], [a-z])="$[decl_static_modules_]translit([$4], [A-Z], [a-z]) extern NTSTATUS $1_init();" + [decl_static_modules_]translit([$4], [A-Z], [a-z])="$[decl_static_modules_]translit([$4], [A-Z], [a-z]) extern NTSTATUS $1_init(void);" string_static_modules="$string_static_modules $1" $4_STATIC="$$4_STATIC $2" AC_SUBST($4_STATIC) |