From 1c8f01c1f5c5cf26f28e94424bed66fb7b14e735 Mon Sep 17 00:00:00 2001
From: Florian Pose <fp@igh-essen.com>
Date: Wed, 18 Jun 2008 13:44:43 +0000
Subject: [PATCH] Bugfix: Bitlength always decimal in XML.

---
 tools/Master.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/Master.cpp b/tools/Master.cpp
index 6b0b9b2a..b56b684c 100644
--- a/tools/Master.cpp
+++ b/tools/Master.cpp
@@ -1461,7 +1461,7 @@ void Master::generateSlaveXml(uint16_t slavePosition)
                 
                 cout
                     << "              <BitLen>"
-                    << (unsigned int) entry.bit_length
+                    << dec << (unsigned int) entry.bit_length
                     << "</BitLen>" << endl;
 
                 if (entry.index) {
-- 
GitLab