diff options
author | Andrew Tridgell <tridge@samba.org> | 1996-08-21 08:33:47 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1996-08-21 08:33:47 +0000 |
commit | 5a6425c3cb6181c202f4575733db1c642eadb4bc (patch) | |
tree | 29b29f137f5d4710911efc00a5f2496b498e8bb8 | |
parent | 04353a9479c01322e34b2f59330fd74a759f6869 (diff) | |
download | samba-5a6425c3cb6181c202f4575733db1c642eadb4bc.tar.gz |
fix compiler warning
-rw-r--r-- | source/printing/printing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/printing/printing.c b/source/printing/printing.c index d1b702cb0a4..ad840d7f511 100644 --- a/source/printing/printing.c +++ b/source/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"); |