Parcourir la source

[1112] Editorial cleanup: added parentheses

Michal 'vorner' Vaner il y a 13 ans
Parent
commit
ee468e8f02
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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'));
 }
 }