mirror of
https://github.com/git-for-windows/git.git
synced 2026-05-04 19:16:21 -05:00
Merge branch 'js/prepare-sequencer'
Silence a clang warning introduced by a recently graduated topic. * js/prepare-sequencer: sequencer: silence -Wtautological-constant-out-of-range-compare
This commit is contained in:
@@ -629,7 +629,7 @@ static const char *todo_command_strings[] = {
|
||||
|
||||
static const char *command_to_string(const enum todo_command command)
|
||||
{
|
||||
if (command < ARRAY_SIZE(todo_command_strings))
|
||||
if ((size_t)command < ARRAY_SIZE(todo_command_strings))
|
||||
return todo_command_strings[command];
|
||||
die("Unknown command: %d", command);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user