summaryrefslogtreecommitdiff
path: root/dahdi_tool.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2008-07-29 22:05:03 +0000
committerKevin P. Fleming <kpfleming@digium.com>2008-07-29 22:05:03 +0000
commiteaf2adbe3147264be464b844996e98a370db48e6 (patch)
treeaef8e155a87bc4dc00a9c724f1f158038e484f7f /dahdi_tool.c
parented5de40105bc87f5efe7c9c83db10c9f265e7acd (diff)
build against the new dahdi/user.h (which is now typedef-free!)
git-svn-id: http://svn.asterisk.org/svn/dahdi/tools/trunk@4629 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'dahdi_tool.c')
-rw-r--r--dahdi_tool.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dahdi_tool.c b/dahdi_tool.c
index b819899..fb23a0c 100644
--- a/dahdi_tool.c
+++ b/dahdi_tool.c
@@ -49,7 +49,7 @@
static int ctl = -1;
static int span_max_chan_pos;
-static DAHDI_SPANINFO s[DAHDI_MAX_SPANS];
+static struct dahdi_spaninfo s[DAHDI_MAX_SPANS];
static char *dahdi_txlevelnames[] = {
"0 db (CSU)/0-133 feet (DSX-1)",
@@ -176,7 +176,7 @@ static void sel_callback(newtComponent c, void *cbdata)
static void show_bits(int span, newtComponent bitbox, newtComponent inuse, newtComponent levels, newtComponent bpvcount,
newtComponent alarms, newtComponent syncsrc, newtComponent irqmisses)
{
- DAHDI_PARAMS zp;
+ struct dahdi_params zp;
int x;
int res;
char c;
@@ -367,7 +367,7 @@ static void show_span(int span)
span_max_chan_pos = s[span].totalchans;
for (x=0;x<DAHDI_MAX_CHANNELS;x++) {
- DAHDI_PARAMS zp;
+ struct dahdi_params zp;
int res;
memset(&zp, 0, sizeof(zp));
zp.channo = x;