Cast pid_t to int for sprintf.

Pointed out by: Charlie Sorsby <crs@hgo.net>
This commit is contained in:
Brian Somers 1998-06-10 00:16:28 +00:00
parent 5264ca0298
commit 6c78a7b0e8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=36833

View File

@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: uucplock.c,v 1.8 1997/08/10 18:42:39 ache Exp $
* $Id: uucplock.c,v 1.9 1998/05/28 23:17:09 brian Exp $
*
*/
@ -204,7 +204,7 @@ put_pid(int fd, pid_t pid)
char buf[32];
int len;
len = sprintf (buf, "%10d\n", pid);
len = sprintf (buf, "%10d\n", (int)pid);
return write (fd, buf, len) == len;
}