diff options
author | Max Kellermann <max@duempel.org> | 2008-11-27 17:56:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-11-27 17:56:32 +0100 |
commit | 45352152fbdcac20b39161069406ad6d5288bd98 (patch) | |
tree | 0fd7d529b7680de22ce33b8cc670c8994ef455ee /src/screen_keydef.c | |
parent | f7d53b74a7743e120f9f1019c594cbd2de708caf (diff) | |
download | mpd-45352152fbdcac20b39161069406ad6d5288bd98.tar.gz mpd-45352152fbdcac20b39161069406ad6d5288bd98.tar.xz mpd-45352152fbdcac20b39161069406ad6d5288bd98.zip |
list_window: use "bool" instead of "int"
For flags and return values, use the "bool" data type instead of
"int".
Diffstat (limited to '')
-rw-r--r-- | src/screen_keydef.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen_keydef.c b/src/screen_keydef.c index 02ef177d8..a8f01b352 100644 --- a/src/screen_keydef.c +++ b/src/screen_keydef.c @@ -187,14 +187,14 @@ assign_new_key(WINDOW *w, int cmd_index, int key_index) } static const char * -list_callback(unsigned idx, int *highlight, G_GNUC_UNUSED void *data) +list_callback(unsigned idx, bool *highlight, G_GNUC_UNUSED void *data) { static char buf[BUFSIZE]; if (subcmd < 0) { if (idx < (unsigned)command_list_length) { if (cmds[idx].flags & COMMAND_KEY_CONFLICT) - *highlight = 1; + *highlight = true; return cmds[idx].name; } else if (idx == LIST_ITEM_APPLY()) return LIST_ITEM_APPLY_LABEL; |