Commit 4d4aaa67 authored by Linus Torvalds's avatar Linus Torvalds

Avoid type warning in comparison by making it explicit.

(The difference between two pointers is a "size_t", while
MAX_LEN and the result here are "int"s).
parent 46f55c63
......@@ -508,7 +508,7 @@ int proc_ide_write_settings
}
if (*p != ':')
goto parse_error;
len = min(p - start, MAX_LEN);
len = min_t(int, p - start, MAX_LEN);
strncpy(name, start, min(len, MAX_LEN));
name[len] = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment