diff options
author | Tim Potter <tpot@samba.org> | 2001-11-25 23:33:15 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-25 23:33:15 +0000 |
commit | 4e512ab75d33b0801b549de50010131166f1e93a (patch) | |
tree | 28bbdbe83f4d32edf9ecc4dca2b9b5d4ec4b9daa | |
parent | 481c644b7b32aa876c69153760fe8a460eea0e69 (diff) | |
download | samba-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)
-rw-r--r-- | source3/include/includes.h | 2 |
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); }; |