summaryrefslogtreecommitdiff
path: root/drivers/dahdi/dahdi-base.c
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-09-11 23:00:57 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-09-11 23:00:57 +0000
commitf94811d7caa78edd91fd307c87903516a3bb8279 (patch)
tree4ac032e24074ac6a1d108994aa88faf652410923 /drivers/dahdi/dahdi-base.c
parenteaec7be7b980918d72a37851d40ab71e6b56870d (diff)
Fix a type used in nethdlc mode, as pointed out in #13427 .
git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@4900 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/dahdi-base.c')
-rw-r--r--drivers/dahdi/dahdi-base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dahdi/dahdi-base.c b/drivers/dahdi/dahdi-base.c
index a295bac..260979d 100644
--- a/drivers/dahdi/dahdi-base.c
+++ b/drivers/dahdi/dahdi-base.c
@@ -1697,7 +1697,7 @@ static int dahdi_xmit(hdlc_device *hdlc, struct sk_buff *skb)
dev->trans_start = jiffies;
stats->tx_packets++;
stats->tx_bytes += ss->writen[oldbuf];
- print_debug_writebuf(ss, skb, outbug);
+ print_debug_writebuf(ss, skb, outbuf);
retval = 0;
/* Free the SKB */
dev_kfree_skb_any(skb);
@@ -1793,7 +1793,7 @@ static int dahdi_ppp_xmit(struct ppp_channel *ppp, struct sk_buff *skb)
some space for us */
ss->outwritebuf = oldbuf;
}
- print_debug_writebuf(ss, skb, outbug);
+ print_debug_writebuf(ss, skb, outbuf);
retval = 1;
}
spin_unlock_irqrestore(&ss->lock, flags);