Browse Source

[trac736] minor whitespace change

Jelte Jansen 14 years ago
parent
commit
16717b1380
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/bin/cfgmgr/plugins/b10logging.py
  2. 1 1
      src/lib/config/config_data.cc

+ 1 - 1
src/bin/cfgmgr/plugins/b10logging.py

@@ -59,7 +59,7 @@ def check(config):
                     if 'stream' in output_option and\
                        output_option['stream'].lower() not in ALLOWED_STREAMS:
                         errors.append("bad stream: " + output_option['stream'])
-                
+
     if errors:
         return ', '.join(errors)
     return None

+ 1 - 1
src/lib/config/config_data.cc

@@ -30,7 +30,7 @@ namespace {
 //         or the original spec_part, if it is not a MapElement or does
 //         not contain "list_item_spec" or "map_item_spec"
 ConstElementPtr findListOrMapSubSpec(ConstElementPtr spec_part) {
-    while (spec_part->getType() == Element::map && 
+    while (spec_part->getType() == Element::map &&
            (spec_part->contains("list_item_spec") ||
             spec_part->contains("map_item_spec"))) {
         if (spec_part->contains("list_item_spec")) {