2010-06-14 Ralf Corsépius <ralf.corsepius@rtems.org>

* libnetworking/netinet/in_pcb.c:
	Eliminate "ushort".
This commit is contained in:
Ralf Corsepius
2010-06-14 05:59:45 +00:00
parent d9f0918c4f
commit cbaf3bc8fe
2 changed files with 3 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
2010-06-14 Ralf Corsépius <ralf.corsepius@rtems.org> 2010-06-14 Ralf Corsépius <ralf.corsepius@rtems.org>
* libnetworking/netinet/in_pcb.c:
Eliminate "ushort".
* libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h: * libfs/src/pipe/fifo.c, libfs/src/pipe/pipe.h:
Eliminate "uint". Eliminate "uint".

View File

@@ -206,7 +206,7 @@ in_pcbbind(struct inpcb *inp, struct mbuf *nam)
inp->inp_laddr = sin->sin_addr; inp->inp_laddr = sin->sin_addr;
} }
if (lport == 0) { if (lport == 0) {
ushort first, last; unsigned short first, last;
int count; int count;
inp->inp_flags |= INP_ANONPORT; inp->inp_flags |= INP_ANONPORT;