fix printing of TMSI on VTY
diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c
index 527d436..2c0c558 100644
--- a/openbsc/src/vty_interface.c
+++ b/openbsc/src/vty_interface.c
@@ -433,7 +433,8 @@
 	if (subscr->imsi)
 		vty_out(vty, "    IMSI: %s%s", subscr->imsi, VTY_NEWLINE);
 	if (subscr->tmsi)
-		vty_out(vty, "    TMSI: %08X", subscr->tmsi, VTY_NEWLINE);
+		vty_out(vty, "    TMSI: %08X%s", atoi(subscr->tmsi),
+			VTY_NEWLINE);
 	vty_out(vty, "    Use count: %u%s", subscr->use_count, VTY_NEWLINE);
 }