summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-04-28 06:18:44 +0000
committerTim Potter <tpot@samba.org>2003-04-28 06:18:44 +0000
commit5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca (patch)
tree1f8b5e6cd9aa88c6884059d51f7cd7496ce88e22
parent67d0f802a50d46e717393f7188d2489e33ecf1b8 (diff)
downloadsamba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.tar.gz
samba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.tar.bz2
samba-5ef616cd5ec8d604bb5cdd14bb644a9c0b0c1bca.zip
Fix compiler warning.
(This used to be commit 6a783ca81cead3eed556570152608fd7a224f1ee)
-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"},