diff options
| author | Eric W. Biederman <ebiederm@xmission.com> | 2012-05-19 15:44:06 -0600 | 
|---|---|---|
| committer | Eric W. Biederman <ebiederm@xmission.com> | 2012-05-19 15:44:40 -0600 | 
| commit | 4b06a81f1daee668fbd6de85557bfb36dd36078f (patch) | |
| tree | 5c5440d2abc6e279db81a0b9067d2fd54bcbbc10 /kernel/user.c | |
| parent | 8ca937a668d4be0b0c89c4fc9a912a5885ac06fe (diff) | |
| download | olio-linux-3.10-4b06a81f1daee668fbd6de85557bfb36dd36078f.tar.xz olio-linux-3.10-4b06a81f1daee668fbd6de85557bfb36dd36078f.zip  | |
userns:  Silence silly gcc warning.
On 32bit builds gcc says:
kernel/user.c:30:4: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
kernel/user.c:38:4: warning: this decimal constant is unsigned only in ISO C90 [enabled by default]
Silence gcc by changing the constant 4294967295 to 4294967295U.
Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
Diffstat (limited to 'kernel/user.c')
| -rw-r--r-- | kernel/user.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/user.c b/kernel/user.c index f9e420e3669..b815fefbe76 100644 --- a/kernel/user.c +++ b/kernel/user.c @@ -27,7 +27,7 @@ struct user_namespace init_user_ns = {  		.extent[0] = {  			.first = 0,  			.lower_first = 0, -			.count = 4294967295, +			.count = 4294967295U,  		},  	},  	.gid_map = { @@ -35,7 +35,7 @@ struct user_namespace init_user_ns = {  		.extent[0] = {  			.first = 0,  			.lower_first = 0, -			.count = 4294967295, +			.count = 4294967295U,  		},  	},  	.kref = {  |