Browse Source

[1112] Editorial cleanup: added parentheses

Michal 'vorner' Vaner 13 years ago
parent
commit
ee468e8f02
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/character_string.cc

+ 1 - 1
src/lib/dns/character_string.cc

@@ -23,7 +23,7 @@ namespace dns {
 
 namespace {
 bool isDigit(char c) {
-    return ('0' <= c) && (c <= '9');
+    return (('0' <= c) && (c <= '9'));
 }
 }