aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-07-15 15:49:44 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-07-15 15:49:44 +0200
commit3b9bebfa24249a7a3f93ccb2af9a87d92155153b (patch)
tree4a8d08e6ab82bce301f703006444a8b93f7343cc
parentffc92d5b23b249621106da700d73ec6f138e18c3 (diff)
tests: Use API e1inp_line_put2 instead of deprecated e1inp_line_put
-rw-r--r--tests/e1inp_ipa_bsc_test.c2
-rw-r--r--tests/e1inp_ipa_bts_test.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/e1inp_ipa_bsc_test.c b/tests/e1inp_ipa_bsc_test.c
index a7317f8..12c436b 100644
--- a/tests/e1inp_ipa_bsc_test.c
+++ b/tests/e1inp_ipa_bsc_test.c
@@ -205,7 +205,7 @@ static struct e1inp_line *line;
static void sighandler(int foo)
{
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ctor");
exit(EXIT_SUCCESS);
}
diff --git a/tests/e1inp_ipa_bts_test.c b/tests/e1inp_ipa_bts_test.c
index 10fe0e8..d6c3772 100644
--- a/tests/e1inp_ipa_bts_test.c
+++ b/tests/e1inp_ipa_bts_test.c
@@ -244,7 +244,7 @@ static struct e1inp_line *line;
static void sighandler(int foo)
{
- e1inp_line_put(line);
+ e1inp_line_put2(line, "ctor");
exit(EXIT_SUCCESS);
}