3220: Fix whitespace
authorTom Clegg <tom@curoverse.com>
Wed, 16 Jul 2014 13:35:57 +0000 (09:35 -0400)
committerTom Clegg <tom@curoverse.com>
Wed, 16 Jul 2014 13:35:57 +0000 (09:35 -0400)
services/keep/src/keep/keep.go

index 15b73ff798577bfb1cfcd71cf78ad3d356d03a0b..a3f66e9e9e0d9bd7216fcf233ceae29c357e89b8 100644 (file)
@@ -602,17 +602,17 @@ func GetBlock(hash string) ([]byte, error) {
                        } else {
                                // Success!
                                if error_to_caller != NotFoundError {
-                                               log.Printf("%s: checksum mismatch for request %s but a good copy was found on another volume and returned\n",
-                                                       vol, hash)
+                                       log.Printf("%s: checksum mismatch for request %s but a good copy was found on another volume and returned\n",
+                                               vol, hash)
                                }
                                return buf, nil
                        }
                }
        }
 
-  if error_to_caller != NotFoundError {
-    log.Printf("%s: checksum mismatch, no good copy found\n", hash)
-  }
+       if error_to_caller != NotFoundError {
+               log.Printf("%s: checksum mismatch, no good copy found\n", hash)
+       }
        return nil, error_to_caller
 }