diff options
author | Tim Potter <tpot@samba.org> | 2002-05-19 11:21:28 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-05-19 11:21:28 +0000 |
commit | c523cce510fb346c670c09243b5c0fb2edeaa46b (patch) | |
tree | 0f6cde9563cbedb169a56d22b13b700af58d0260 /source3/lib/debug.c | |
parent | 4f8b957f4020e5f5c418de15fa33c755e28558f3 (diff) | |
download | samba-c523cce510fb346c670c09243b5c0fb2edeaa46b.tar.gz samba-c523cce510fb346c670c09243b5c0fb2edeaa46b.tar.bz2 samba-c523cce510fb346c670c09243b5c0fb2edeaa46b.zip |
Fixed compiler warning.
(This used to be commit 793d9306e29ddd23e3f52736b5cd558b5d058611)
Diffstat (limited to 'source3/lib/debug.c')
-rw-r--r-- | source3/lib/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/debug.c b/source3/lib/debug.c index 0a4cee89ae..dc1a55fb58 100644 --- a/source3/lib/debug.c +++ b/source3/lib/debug.c @@ -171,7 +171,7 @@ utility lists registered debug class names's #define MAX_CLASS_NAME_SIZE 1024 -char *debug_list_class_names_and_levels() +char *debug_list_class_names_and_levels(void) { int i, dim; char **list; |