summaryrefslogtreecommitdiff
path: root/source3/include/includes.h
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2001-11-25 23:33:15 +0000
committerTim Potter <tpot@samba.org>2001-11-25 23:33:15 +0000
commit4e512ab75d33b0801b549de50010131166f1e93a (patch)
tree28bbdbe83f4d32edf9ecc4dca2b9b5d4ec4b9daa /source3/include/includes.h
parent481c644b7b32aa876c69153760fe8a460eea0e69 (diff)
downloadsamba-4e512ab75d33b0801b549de50010131166f1e93a.tar.gz
samba-4e512ab75d33b0801b549de50010131166f1e93a.tar.bz2
samba-4e512ab75d33b0801b549de50010131166f1e93a.zip
Fixed compiler warning.
Why do people keep adding stuff to includes.h (OK I am guilty of this too)? It's getting really huge and full of random junk. )-: I've noticed TNG have started to split stuff up in to individual header files included as needed. (This used to be commit 36630f3984cb2bc4e60d910889e0396891cbc088)
Diffstat (limited to 'source3/include/includes.h')
-rw-r--r--source3/include/includes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h
index 27deaf4339..f0ab1a2c21 100644
--- a/source3/include/includes.h
+++ b/source3/include/includes.h
@@ -740,7 +740,7 @@ typedef struct smb_wpasswd {
/* used in net.c */
struct functable {
char *funcname;
- int (*fn)();
+ int (*fn)(int argc, const char **argv);
};