diff options
Diffstat (limited to 'man7/user_namespaces.7')
| -rw-r--r-- | man7/user_namespaces.7 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man7/user_namespaces.7 b/man7/user_namespaces.7 index 74a0669666..7ed3b026f1 100644 --- a/man7/user_namespaces.7 +++ b/man7/user_namespaces.7 @@ -1220,7 +1220,7 @@ update_map(char *mapping, char *map_file) /* Replace commas in mapping string with newlines. */ map_len = strlen(mapping); - for (int j = 0; j < map_len; j++) + for (size_t j = 0; j < map_len; j++) if (mapping[j] == \(aq,\(aq) mapping[j] = \(aq\en\(aq; |
