diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:54:44 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-08-15 18:54:44 +0000 |
commit | de10237719db8101cd9487b257761d4721f857ab (patch) | |
tree | 7f315aa67f37c64626f881a94abc3d0d1da6e7e5 /source4/printing | |
parent | 8e4ab747b02207671203d40cd2a78692da78faef (diff) | |
download | samba-de10237719db8101cd9487b257761d4721f857ab.tar.gz samba-de10237719db8101cd9487b257761d4721f857ab.tar.bz2 samba-de10237719db8101cd9487b257761d4721f857ab.zip |
more fixes from the IRIX compiler (thanks herb!)
(This used to be commit 02d068ba7d81d6db25122144981c63f74ad44025)
Diffstat (limited to 'source4/printing')
-rw-r--r-- | source4/printing/printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/printing/printing.c b/source4/printing/printing.c index 26ea52e35a..e4d9e5f785 100644 --- a/source4/printing/printing.c +++ b/source4/printing/printing.c @@ -2030,7 +2030,7 @@ int print_queue_status(int snum, in hash order. */ qsort(tstruct.queue, tstruct.qcount, sizeof(print_queue_struct), - QSORT_CAST(printjob_comp)); + QSORT_CAST printjob_comp); *queue = tstruct.queue; return tstruct.qcount; |