From: thomas Date: Mon, 13 Jan 1997 18:59:02 +0000 (+0000) Subject: Thu Jan 9 15:59:35 1997 Thomas Bushnell, n/BSG X-Git-Tag: libc-970117 X-Git-Url: http://git.csclub.uwaterloo.ca/?p=kopensolaris-gnu%2Fglibc.git;a=commitdiff_plain;h=cb92b959a3c8cf72dd1065ccead64439706f17e6 Thu Jan 9 15:59:35 1997 Thomas Bushnell, n/BSG * sysdeps/unix/bsd/tcsendbrk.c (tcsendbreak): Finish deansideclification. --- diff --git a/sysdeps/unix/bsd/tcsendbrk.c b/sysdeps/unix/bsd/tcsendbrk.c index 8e63163af1..55175dc88a 100644 --- a/sysdeps/unix/bsd/tcsendbrk.c +++ b/sysdeps/unix/bsd/tcsendbrk.c @@ -44,7 +44,7 @@ tcsendbreak (fd, duration) delay.tv_usec = duration; /* Starting sending break. */ - if (__ioctl (fd, TIOCSBRK, (PTR) NULL) < 0) + if (__ioctl (fd, TIOCSBRK, (void *) NULL) < 0) return -1; /* Wait DURATION microseconds. */ @@ -52,5 +52,5 @@ tcsendbreak (fd, duration) &delay); /* Turn off the break. */ - return __ioctl (fd, TIOCCBRK, (PTR) NULL); + return __ioctl (fd, TIOCCBRK, (void *) NULL); }