running "pcomm" on Sys V/AT
Rick Farris
rfarris at serene.CTS.COM
Tue Sep 20 03:31:05 AEST 1988
In article <427 at l5comp.UUCP> scotty at l5comp.UUCP (Scott Turner) writes:
>/* if (*lock_path != NULL && lock_path != NULL) { */
> if ((lock_path != NULL) && (*lock_path != NULL)) {
>
>Scott Turner
Wait a second. Isn't there another problem here? Doesn't this assume that
the size of a pointer, and the size of a char are the same? Shouldn't this
really be:
if ((lock_path != NULL) && (*lock_path != (char)NULL)) {
My compiler complains...
_______________________________
Rick Farris | rfarris at serene.cts.com | Voice (619) 259-6793
POB M | ...!uunet!serene!rfarris | BBS 259-7757
Del Mar, CA 92014 |_______________________________| serene.UUCP 259-3704
If carpenters built buildings the way most programmers write programs,
the first woodpecker that came along would destroy civilization. . .
More information about the Comp.unix.microport
mailing list