Date: Tue, 29 Apr 1997 21:08:45 -0700 From: "Jordan K. Hubbard" <jkh@time.cdrom.com> To: Terry Lambert <terry@lambert.org> Cc: handy@sag.space.lockheed.com (Brian N. Handy), current@FreeBSD.ORG Subject: Re: Longer user names: take 2 Message-ID: <23458.862373325@time.cdrom.com> In-Reply-To: Your message of "Tue, 29 Apr 1997 15:39:43 PDT." <199704292239.PAA00766@phaeton.artisoft.com>
next in thread | previous in thread | raw e-mail | index | archive | help
> + if( dflag) { > + for( dkp = ep->dkp; dkp != NULL; dkp = *((struct kinfo_ proc **)(&dkp->kp_eproc.e_spare[ 0]))) { That's a *really mutant* coding style you have there, Mr. Lambert. :-) Please, for Richie's sake, how about something more like: if (dflag) { for (dkp = ep->dkp; dkp != NULL; dkp = *((struct kinfo_proc **)(&dkp->kp_eproc.e_spare[0]))) { ... And lose the extra space before the double-quote char. If nothing else, just your added code will then remain self-consistent throughout the file. :) Jordan
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?23458.862373325>