diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-09-25 09:56:36 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-09-25 09:56:36 +0000 |
commit | 780e048f58c4947de56544d46297e2a3d66a81e7 (patch) | |
tree | bcf3e5f7771a99a3f2863dce9e9062679bbee480 /source3/printing | |
parent | 8a3bb8b36bf1bedabb6dfa931ec9a1d579f80500 (diff) | |
download | samba-780e048f58c4947de56544d46297e2a3d66a81e7.tar.gz samba-780e048f58c4947de56544d46297e2a3d66a81e7.tar.bz2 samba-780e048f58c4947de56544d46297e2a3d66a81e7.zip |
At least try to get this function picked up by the autoprototyper
(This used to be commit d5303d5c080212486329f7e5a65f732e11efbb37)
Diffstat (limited to 'source3/printing')
-rw-r--r-- | source3/printing/print_cups.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/printing/print_cups.c b/source3/printing/print_cups.c index 858647a52f..2df846aa57 100644 --- a/source3/printing/print_cups.c +++ b/source3/printing/print_cups.c @@ -73,9 +73,9 @@ cups_passwd_cb(const char *prompt) /* I - Prompt */ * system. */ -void -cups_printer_fn(void (*fn)(char *, char *)) /* I - Function to call */ +void cups_printer_fn(void (*fn)(char *, char *)) { + /* I - Function to call */ http_t *http; /* HTTP connection to server */ ipp_t *request, /* IPP Request */ *response; /* IPP Response */ |