aboutsummaryrefslogtreecommitdiffstats
path: root/src/tbf.cpp
diff options
context:
space:
mode:
authorJacob Erlbeck <jerlbeck@sysmocom.de>2015-04-30 15:59:01 +0200
committerJacob Erlbeck <jerlbeck@sysmocom.de>2015-05-04 09:58:34 +0200
commitc0c580c414e4fe0bd82ebc78ff12bb1014cd5a9c (patch)
treeea67620edf877cb24fd3b9ebc7a5252cf50c79cd /src/tbf.cpp
parent56e8d710907b9320d41a6285f08bba39aae2ee3b (diff)
vty: Fix warnings about undeclared functions
This commit adds missing includes to pcu_vty.c and fixes the llist_head type (missing struct keyword) used by tbf_print_vty_info. Sponsored-by: On-Waves ehf
Diffstat (limited to 'src/tbf.cpp')
-rw-r--r--src/tbf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tbf.cpp b/src/tbf.cpp
index 9869ff4b..b1377f0e 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -869,7 +869,7 @@ uint8_t gprs_rlcmac_tbf::tsc() const
return trx->pdch[first_ts].tsc;
}
-void tbf_print_vty_info(struct vty *vty, llist_head *ltbf)
+void tbf_print_vty_info(struct vty *vty, struct llist_head *ltbf)
{
gprs_rlcmac_tbf *tbf = llist_pods_entry(ltbf, gprs_rlcmac_tbf);