summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd/demand.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-09-16 04:13:48 +0000
commit8a4f22e64ec09db4075cccb24dc290386ce16a95 (patch)
treeed36905d0a1fc10730f98c409906b4a1c110340b /cpukit/pppd/demand.c
parent2007-09-14 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-8a4f22e64ec09db4075cccb24dc290386ce16a95.tar.bz2
Convert to using C99 fixed-size types instead of BSD fixed-size types.
Diffstat (limited to 'cpukit/pppd/demand.c')
-rw-r--r--cpukit/pppd/demand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/pppd/demand.c b/cpukit/pppd/demand.c
index 4d1d19fef4..efcab0a2f5 100644
--- a/cpukit/pppd/demand.c
+++ b/cpukit/pppd/demand.c
@@ -85,8 +85,8 @@ demand_conf()
flush_flag = 0;
fcs = PPP_INITFCS;
- ppp_send_config(0, PPP_MRU, (u_int32_t) 0, 0, 0);
- ppp_recv_config(0, PPP_MRU, (u_int32_t) 0, 0, 0);
+ ppp_send_config(0, PPP_MRU, (uint32_t) 0, 0, 0);
+ ppp_recv_config(0, PPP_MRU, (uint32_t) 0, 0, 0);
#ifdef PPP_FILTER
set_filters(&pass_filter, &active_filter);