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
maint
Junio C Hamano 2016-11-11 13:56:30 -08:00
commit 5de732f647
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}