diff options
author | Tim Potter <tpot@samba.org> | 2003-04-28 06:18:44 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-28 06:18:44 +0000 |
commit | 6a783ca81cead3eed556570152608fd7a224f1ee (patch) | |
tree | 6a04d14c4a62848f26bf19a7cd6ae14046155c18 /source | |
parent | 22e61a7e77eabd462f192fb03b5adb1d07fa7409 (diff) | |
download | samba-6a783ca81cead3eed556570152608fd7a224f1ee.tar.gz |
Fix compiler warning.
Diffstat (limited to 'source')
-rw-r--r-- | source/utils/ntlm_auth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/ntlm_auth.c b/source/utils/ntlm_auth.c index 88913c80512..ddb7053cdbb 100644 --- a/source/utils/ntlm_auth.c +++ b/source/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"}, |