summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-04-28 06:19:11 +0000
committerTim Potter <tpot@samba.org>2003-04-28 06:19:11 +0000
commit90dbd21cd09f7fa32766dfbf09a646d2a524695c (patch)
tree8f313827345d1d534981004d5e7783308aab344d /source3
parent507cdd19966242cb447299fa8e1e1a92584aea8c (diff)
downloadsamba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.tar.gz
samba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.tar.bz2
samba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.zip
Fix compiler warning.
(This used to be commit f127f964250c86986996afab905b40cff420bfd5)
Diffstat (limited to 'source3')
-rw-r--r--source3/utils/ntlm_auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/ntlm_auth.c b/source3/utils/ntlm_auth.c
index 88913c8051..ddb7053cdb 100644
--- a/source3/utils/ntlm_auth.c
+++ b/source3/utils/ntlm_auth.c
@@ -656,7 +656,7 @@ static BOOL test_ntlm(void)
*/
struct ntlm_tests {
- BOOL (*fn)();
+ BOOL (*fn)(void);
const char *name;
} test_table[] = {
{test_lm, "test LM"},