diff options
author | Tim Potter <tpot@samba.org> | 2003-04-28 06:19:11 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-28 06:19:11 +0000 |
commit | 90dbd21cd09f7fa32766dfbf09a646d2a524695c (patch) | |
tree | 8f313827345d1d534981004d5e7783308aab344d /source3/utils | |
parent | 507cdd19966242cb447299fa8e1e1a92584aea8c (diff) | |
download | samba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.tar.gz samba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.tar.bz2 samba-90dbd21cd09f7fa32766dfbf09a646d2a524695c.zip |
Fix compiler warning.
(This used to be commit f127f964250c86986996afab905b40cff420bfd5)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/ntlm_auth.c | 2 |
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"}, |