Browse code

Merge pull request #9988 from nponeccop/patch-1

FsMagic should avoid sign extension on i686

Michael Crosby authored on 2015/01/13 05:02:09
Showing 1 changed files
... ...
@@ -11,7 +11,7 @@ import (
11 11
 	"github.com/docker/docker/pkg/archive"
12 12
 )
13 13
 
14
-type FsMagic uint64
14
+type FsMagic uint32
15 15
 
16 16
 const (
17 17
 	FsMagicBtrfs = FsMagic(0x9123683E)