Date: Fri, 14 May 2004 13:51:42 -0700 (PDT) From: Bruce Evans <bde@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_synch.c subr_sleepqueue.c Message-ID: <200405142051.i4EKphRl006897@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
bde 2004/05/14 13:51:42 PDT FreeBSD src repository Modified files: sys/kern kern_synch.c subr_sleepqueue.c Log: Fixed some common printf format errors. Don't assume that "struct foo *" is "void *" (it isn't) or that the default promotion of pid_t is int. Instead, assume that casting "struct foo *" to "void *" and printing the result with %p is useful, and that all pid_t's are representable as longs. Fixed some minor style bugs (mainly spelling errors in comments). Revision Changes Path 1.248 +14 -19 src/sys/kern/kern_synch.c 1.7 +13 -14 src/sys/kern/subr_sleepqueue.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200405142051.i4EKphRl006897>