]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 13 Jul 2014 00:14:38 +0000 (18:14 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Sun, 13 Jul 2014 00:14:38 +0000 (18:14 -0600)
src/Notes.cc

index 9ff09ce7c98032b9f6463c818840b54b0f38a286..38507fb49f7623faef67106b3dc31a4a92c79422 100644 (file)
@@ -207,7 +207,7 @@ void
 NotePairs::remove(const char *key)
 {
     std::vector<NotePairs::Entry *>::iterator i = entries.begin();
-    while(i != entries.end()) {
+    while (i != entries.end()) {
         if ((*i)->name.cmp(key) == 0) {
             delete *i;
             i = entries.erase(i);