2006-08-15 Joel Sherrill <joel@OARcorp.com>

* libnetworking/kern/kern_sysctl.c: Change int to int32_t.
	* libnetworking/net/if_loop.c: Add cast to long.
	These plus a patch to machine/param.h let the h8300 build multilib.
This commit is contained in:
Joel Sherrill
2006-08-15 11:08:14 +00:00
parent 0f8eaed193
commit 5f88544369
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -1,3 +1,9 @@
2006-08-15 Joel Sherrill <joel@OARcorp.com>
* libnetworking/kern/kern_sysctl.c: Change int to int32_t.
* libnetworking/net/if_loop.c: Add cast to long.
These plus a patch to machine/param.h let the h8300 build multilib.
2006-08-10 Till Straumann <strauman@slac.stanford.edu>
* libnetworking/rtems/rtems_mii_ioctl_kern.c:
+1 -1
View File
@@ -146,7 +146,7 @@ sysctl_register_oid(struct sysctl_oid *oidp)
* accomodate e.g. net.inet.raw as a static sysctl node.
*/
if (oidp->oid_number == OID_AUTO) {
static int newoid = CTL_AUTO_START;
static int32_t newoid = CTL_AUTO_START;
oidp->oid_number = newoid++;
if (newoid == 0x7fffffff)
+1 -1
View File
@@ -233,7 +233,7 @@ lortrequest(cmd, rt, sa)
* overhead.
*/
rt->rt_rmx.rmx_recvpipe =
rt->rt_rmx.rmx_sendpipe = 3 * LOMTU;
rt->rt_rmx.rmx_sendpipe = 3L * (long)LOMTU;
}
}