diff options
author | Günther Deschner <gd@samba.org> | 2011-03-22 22:02:13 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-23 19:24:35 +0100 |
commit | 48c604a3b72caa79069d3d32b47e0a03090e3687 (patch) | |
tree | 5bc63cc53dc6ab00a9d999bc42a517077780bd0a | |
parent | 6c8b820b9bf6d50330f23d9da76a143866afbdbd (diff) | |
download | samba-48c604a3b72caa79069d3d32b47e0a03090e3687.tar.gz samba-48c604a3b72caa79069d3d32b47e0a03090e3687.tar.bz2 samba-48c604a3b72caa79069d3d32b47e0a03090e3687.zip |
s3-smbta-util: fix some buildwarnings.
Guenther
-rw-r--r-- | source3/utils/smbta-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/smbta-util.c b/source3/utils/smbta-util.c index cf9097411f..5b081655e1 100644 --- a/source3/utils/smbta-util.c +++ b/source3/utils/smbta-util.c @@ -22,7 +22,7 @@ static void delete_key(void); -static void help() +static void help(void) { printf("-h print this help message.\n"); printf("-f <file> install the key from a file and activate\n"); @@ -34,7 +34,7 @@ printf("-s check if a key is installed, and print the key to stdout.\n"); printf("\n"); } -static void check_key() +static void check_key(void) { size_t size; char *akey; if (!secrets_init()) { |