PERFORCE change 86623 for review
Todd Miller
millert at FreeBSD.org
Thu Nov 10 22:33:13 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=86623
Change 86623 by millert at millert_ibook on 2005/11/10 22:32:36
Fix 2 compiler warnings due to minor type mismatches
Affected files ...
.. //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/sebsd.c#18 edit
Differences ...
==== //depot/projects/trustedbsd/sedarwin7/src/sedarwin/sedarwin/sebsd.c#18 (text+ko) ====
@@ -87,7 +87,7 @@
sebsd_malloc_init(void)
{
int i;
- void *prealloc[512];
+ vm_offset_t prealloc[512];
for (i = 0; i < 512; i++) {
if ((prealloc[i] = kalloc(64)) == NULL)
@@ -2601,7 +2601,7 @@
FD__USE, NULL));
}
-extern int sebsd_syscall(struct proc *p, int call, void *args);
+extern int sebsd_syscall(struct proc *p, int call, void *args, int *retv);
static struct mac_policy_ops sebsd_ops = {
.mpo_init = sebsd_init,
To Unsubscribe: send mail to majordomo at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list