Browse code

devmapper: remove extra space in DefaultThinpBlockSize assignment

Docker-DCO-1.1-Signed-off-by: Mike Snitzer <snitzer@redhat.com> (github: snitm)

Mike Snitzer authored on 2014/06/25 01:43:45
Showing 1 changed files
... ...
@@ -28,7 +28,7 @@ var (
28 28
 	DefaultDataLoopbackSize     int64  = 100 * 1024 * 1024 * 1024
29 29
 	DefaultMetaDataLoopbackSize int64  = 2 * 1024 * 1024 * 1024
30 30
 	DefaultBaseFsSize           uint64 = 10 * 1024 * 1024 * 1024
31
-	DefaultThinpBlockSize       uint32  = 1024 // 512K = 1024 512b sectors
31
+	DefaultThinpBlockSize       uint32 = 1024 // 512K = 1024 512b sectors
32 32
 )
33 33
 
34 34
 type DevInfo struct {