From: Andrew Tridgell Date: Wed, 21 Aug 1996 08:33:47 +0000 (+0000) Subject: fix compiler warning X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba.git;a=commitdiff_plain;h=66a13075a49a4a77666971f4f23db93793a0831e fix compiler warning (This used to be commit 5a6425c3cb6181c202f4575733db1c642eadb4bc) --- diff --git a/source3/printing/printing.c b/source3/printing/printing.c index d1b702cb0a4..ad840d7f511 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");