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 | 5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca (patch) | |
tree | 1f8b5e6cd9aa88c6884059d51f7cd7496ce88e22 /source3/utils/ntlm_auth.c | |
parent | 67d0f802a50d46e717393f7188d2489e33ecf1b8 (diff) | |
download | samba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.tar.gz samba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.tar.bz2 samba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.zip |
Fix compiler warning.
(This used to be commit 6a783ca81cead3eed556570152608fd7a224f1ee)
Diffstat (limited to 'source3/utils/ntlm_auth.c')
-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"}, |