Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ec554fa7 authored by Toralf Förster's avatar Toralf Förster Committed by Casey Schaufler
Browse files

Warning in scanf string typing



This fixes a warning about the mismatch of types between
the declared unsigned and integer.

Signed-off-by: default avatarToralf Förster <toralf.foerster@gmx.de>
parent 36ea735b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1193,7 +1193,7 @@ static ssize_t smk_write_netlbladdr(struct file *file, const char __user *buf,

	data[count] = '\0';

	rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%d %s",
	rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd/%u %s",
		&host[0], &host[1], &host[2], &host[3], &m, smack);
	if (rc != 6) {
		rc = sscanf(data, "%hhd.%hhd.%hhd.%hhd %s",