Index: /trunk/FACT++/src/ServiceList.cc
===================================================================
--- /trunk/FACT++/src/ServiceList.cc	(revision 10354)
+++ /trunk/FACT++/src/ServiceList.cc	(revision 10355)
@@ -132,5 +132,5 @@
 DimInfo *ServiceList::CreateDimInfo(const string &str, const string &svc) const
 {
-    return new DimInfo((str+"/"+svc).c_str(),
+    return new DimInfo((str+'/'+svc).c_str(),
                        const_cast<char*>(""),
                        const_cast<ServiceList*>(this));
@@ -388,5 +388,5 @@
 string ServiceList::GetFormat(const string &server, const string &name) const
 {
-    return GetFormat(server+"/"+name);
+    return GetFormat(server+'/'+name);
 }
 
@@ -423,5 +423,5 @@
 vector<Description> ServiceList::GetDescriptions(const string &server, const string &name) const
 {
-    return GetDescriptions(server+"/"+name);
+    return GetDescriptions(server+'/'+name);
 }
 
@@ -623,5 +623,5 @@
             continue;
 
-        out << "" << kRed << "----- " << server << " -----" << endl;
+        out << kRed << "----- " << server << " -----" << endl;
 
         const vector<string> &lst = i->second;
@@ -637,7 +637,7 @@
             const string fmt = GetFormat(server, *s);
             if (!fmt.empty())
-                out << "[" << fmt << "]";
-
-            const string svc = server + "/" + *s;
+                out << '[' << fmt << ']';
+
+            const string svc = server + '/' + *s;
 
             const DescriptionMap::const_iterator v = fDescriptionList.find(svc);
@@ -741,5 +741,5 @@
 
     // Compile the command which will be sent to the state-machine
-    const string cmd = server + "/" + name;
+    const string cmd = server + '/' + name;
 
     if (!HasService(server, name))
