summaryrefslogtreecommitdiff
path: root/backend/usb-unix.c
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-04-07 21:00:45 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-04-07 21:00:45 +0000
commite53920b9224e07b7d5f3e5a3ffea1f64ded479d2 (patch)
tree80f162209da3813afc2f8c34935cefeb08d79e90 /backend/usb-unix.c
parentd6ae789d922e30aa25c55e01e1523d451be2016b (diff)
downloadcups-e53920b9224e07b7d5f3e5a3ffea1f64ded479d2.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@125 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'backend/usb-unix.c')
-rw-r--r--backend/usb-unix.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/backend/usb-unix.c b/backend/usb-unix.c
index ae302a096..f3d1c3d51 100644
--- a/backend/usb-unix.c
+++ b/backend/usb-unix.c
@@ -1,5 +1,5 @@
/*
- * "$Id: usb-unix.c 5259 2006-03-09 19:22:36Z mike $"
+ * "$Id: usb-unix.c 5373 2006-04-06 20:03:32Z mike $"
*
* USB port backend for the Common UNIX Printing System (CUPS).
*
@@ -56,7 +56,9 @@ print_device(const char *uri, /* I - Device URI */
const char *resource, /* I - Resource/modelname */
const char *options, /* I - Device options/serial number */
int fp, /* I - File descriptor to print */
- int copies) /* I - Copies to print */
+ int copies, /* I - Copies to print */
+ int argc, /* I - Number of command-line arguments (6 or 7) */
+ char *argv[]) /* I - Command-line arguments */
{
int fd; /* USB device */
int rbytes; /* Number of bytes read */
@@ -77,6 +79,8 @@ print_device(const char *uri, /* I - Device URI */
unsigned int status; /* Port status (off-line, out-of-paper, etc.) */
#endif /* __linux */
+ (void)argc;
+ (void)argv;
/*
* Open the USB port device...
@@ -618,5 +622,5 @@ open_device(const char *uri) /* I - Device URI */
/*
- * End of "$Id: usb-unix.c 5259 2006-03-09 19:22:36Z mike $".
+ * End of "$Id: usb-unix.c 5373 2006-04-06 20:03:32Z mike $".
*/