summaryrefslogtreecommitdiff
path: root/source3/printing
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-08-21 08:33:47 +0000
committerAndrew Tridgell <tridge@samba.org>1996-08-21 08:33:47 +0000
commit66a13075a49a4a77666971f4f23db93793a0831e (patch)
treea151370f588143af1853d1dbec5dd5f3cbb328ef /source3/printing
parent044b403a9acc74a6af076e6e254b0b974346218b (diff)
downloadsamba-66a13075a49a4a77666971f4f23db93793a0831e.tar.gz
samba-66a13075a49a4a77666971f4f23db93793a0831e.tar.bz2
samba-66a13075a49a4a77666971f4f23db93793a0831e.zip
fix compiler warning
(This used to be commit 5a6425c3cb6181c202f4575733db1c642eadb4bc)
Diffstat (limited to 'source3/printing')
-rw-r--r--source3/printing/printing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/printing/printing.c b/source3/printing/printing.c
index d1b702cb0a..ad840d7f51 100644
--- a/source3/printing/printing.c
+++ b/source3/printing/printing.c
@@ -377,7 +377,7 @@ HINT: Use as short a path as possible for the samba spool directory.
A long spool-path will just waste significant chars of the file name.
*/
- (char)line[JOBSIZE_POS-1]=' ';
+ line[JOBSIZE_POS-1]=' ';
/* handle the case of "(stdin)" as a filename */
string_sub(line,"stdin","STDIN");