Subject: CVS commit: src/sys/kern
To: None <source-changes@NetBSD.org>
From: Christos Zoulas <christos@netbsd.org>
List: source-changes
Date: 01/06/2007 20:38:15
Module Name: src
Committed By: christos
Date: Sat Jan 6 20:38:15 UTC 2007
Modified Files:
src/sys/kern: kern_xxx.c
Log Message:
register_t is unsigned on sparc/sparc64/sh5/powerpc. This produces warnings
on comparisons < 0, since they can never be true. All register_t's should
be made signed, and this commit should be reverted. For now cast to int,
since the syscall code is a small number and guaranteed to fit.
To generate a diff of this commit:
cvs rdiff -r1.62 -r1.63 src/sys/kern/kern_xxx.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.