Browse Source

[3899] Added missing space in checkRange() error message

Francis Dupont 10 years ago
parent
commit
152328be5c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/util/time_utilities.cc

+ 1 - 1
src/lib/util/time_utilities.cc

@@ -150,7 +150,7 @@ checkRange(const int min, const int max, const int value,
     if ((value >= min) && (value <= max)) {
         return;
     }
-    isc_throw(InvalidTime, "Invalid " << valname << "value: " << value);
+    isc_throw(InvalidTime, "Invalid " << valname << " value: " << value);
 }
 }