diff options
author | Toralf Förster <toralf.foerster@gmx.de> | 2014-04-27 13:33:34 -0400 |
---|---|---|
committer | Casey Schaufler <casey@schaufler-ca.com> | 2014-05-06 14:32:53 -0400 |
commit | ec554fa75ec94dcf47e52db9551755679c10235b (patch) | |
tree | 41be1a9e7424e6f2e9817578e06d359ec820d59d /security/smack | |
parent | 36ea735b522d09826ae0dac0e540f294436c52f3 (diff) |
Warning in scanf string typing
This fixes a warning about the mismatch of types between
the declared unsigned and integer.
Signed-off-by: Toralf Förster <toralf.foerster@gmx.de>
Diffstat (limited to 'security/smack')
-rw-r--r-- | security/smack/smackfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/smack/smackfs.c b/security/smack/smackfs.c index 177d87875394..32b248820840 100644 --- a/security/smack/smackfs.c +++ b/security/smack/smackfs.c | |||
@@ -1193,7 +1193,7 @@ static ssize_t smk_write_netlbladdr(struct file *file, const char __user *buf, | |||
1193 | 1193 | ||
1194 | data[count] = '\0'; | 1194 | data[count] = '\0'; |
1195 | 1195 | ||
1196 | rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%d %s", | 1196 | rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%u %s", |
1197 | &host[0], &host[1], &host[2], &host[3], &m, smack); | 1197 | &host[0], &host[1], &host[2], &host[3], &m, smack); |
1198 | if (rc != 6) { | 1198 | if (rc != 6) { |
1199 | rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s", | 1199 | rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s", |