mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-06 08:51:14 -03:00
Add a missing typecast
This commit is contained in:
@@ -509,7 +509,7 @@ void safe_report_exec_error(int err, const char *actual_cmd, const char * const
|
|||||||
|
|
||||||
if (arg_max > 0)
|
if (arg_max > 0)
|
||||||
{
|
{
|
||||||
format_size_safe(sz2, arg_max);
|
format_size_safe(sz2, static_cast<unsigned long long>(arg_max));
|
||||||
debug_safe(0, "The total size of the argument and environment lists %s exceeds the operating system limit of %s.", sz1, sz2);
|
debug_safe(0, "The total size of the argument and environment lists %s exceeds the operating system limit of %s.", sz1, sz2);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user