Index: /trunk/BNC/src/bnccore.h
===================================================================
--- /trunk/BNC/src/bnccore.h	(revision 9210)
+++ /trunk/BNC/src/bnccore.h	(revision 9211)
@@ -59,5 +59,5 @@
   QString           confFileName() const {return _confFileName;}
   void              writeRawData(const QByteArray& data, const QByteArray& staID,
-                                const QByteArray& format);
+                                 const QByteArray& format);
   void             initCombination();
   void             stopCombination();
Index: /trunk/BNC/src/bncgetthread.cpp
===================================================================
--- /trunk/BNC/src/bncgetthread.cpp	(revision 9210)
+++ /trunk/BNC/src/bncgetthread.cpp	(revision 9211)
@@ -317,12 +317,16 @@
 t_irc bncGetThread::initDecoder() {
 
+
+
   _decoder = 0;
 
-  if (_format.indexOf("RTCM_2") != -1 || _format.indexOf("RTCM2") != -1
-      || _format.indexOf("RTCM 2") != -1) {
+  if (_format.indexOf("RTCM_2") != -1 ||
+      _format.indexOf("RTCM2")  != -1 ||
+      _format.indexOf("RTCM 2") != -1) {
     emit(newMessage(_staID + ": Get data in RTCM 2.x format", true));
     _decoder = new RTCM2Decoder(_staID.data());
-  } else if (_format.indexOf("RTCM_3") != -1 || _format.indexOf("RTCM3") != -1
-      || _format.indexOf("RTCM 3") != -1) {
+  } else if (_format.indexOf("RTCM_3") != -1 ||
+      _format.indexOf("RTCM3")  != -1 ||
+      _format.indexOf("RTCM 3") != -1) {
     emit(newMessage(_staID + ": Get data in RTCM 3.x format", true));
     RTCM3Decoder* newDecoder = new RTCM3Decoder(_staID, _rawFile);
