From ccda45ecf92e0a766411e77e68d53952e82fd68f Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Fri, 16 Feb 2018 18:13:16 +0100 Subject: [PATCH] bool2bit_tmpl(): Print unsupported template in failure case Change-Id: I53c65e3a2b71e4c9b6691969d50def69b25ddfd0 --- library/Osmocom_Types.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Osmocom_Types.ttcn b/library/Osmocom_Types.ttcn index ab5c098d0..1766a405c 100644 --- a/library/Osmocom_Types.ttcn +++ b/library/Osmocom_Types.ttcn @@ -91,7 +91,7 @@ function bool2bit_tmpl(template boolean inp) return template BIT1 { return '0'B; } } - setverdict(fail, "Unsupported template"); + setverdict(fail, "Unsupported template", inp); self.stop; }