From 646894e8eab887b7aa10be17e54d2d0f521e5e15 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Fri, 10 Jun 2016 10:41:26 +0200 Subject: [PATCH] sbc: fix format --- test/sbc/sbc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sbc/sbc.py b/test/sbc/sbc.py index 6864eac8f..6e9616a57 100644 --- a/test/sbc/sbc.py +++ b/test/sbc/sbc.py @@ -260,7 +260,7 @@ class SBCFrame: def __str__(self): res = "SBCFrameHeader:" - res += "\n - syncword %d" % self.syncword + res += "\n - syncword %x" % self.syncword res += "\n - sampling frequency %d Hz" % sampling_frequency_to_str(self.sampling_frequency) res += "\n - nr channels %d" % self.nr_channels @@ -271,7 +271,7 @@ class SBCFrame: res += "\n - allocation method %s" % allocation_method_to_str(self.allocation_method) res += "\n - bitpool %d" % self.bitpool - res += "\n - crc check %d" % self.crc_check + res += "\n - crc check %x" % self.crc_check return res