little indentation fixes

This commit is contained in:
marschap
2007-10-11 08:58:42 +00:00
parent 6ecb4854b4
commit 8dae1de0cb
+2 -2
View File
@@ -708,12 +708,12 @@ MenuResult menu_process_input(Menu *menu, MenuToken token, const char *key, unsi
void menu_select_subitem(Menu *menu, char *subitem_id)
{
int position;
assert(menu != NULL);
position = menu_get_index_of(menu, subitem_id);
debug(RPT_DEBUG, "%s(menu=[%s], subitem_id=\"%s\")", __FUNCTION__,
menu->id, subitem_id);
if (position < 0)
{
if (position < 0) {
debug(RPT_DEBUG, "%s: subitem \"%s\" not found"
" or hidden in \"%s\", ignored",
__FUNCTION__, subitem_id, menu->id);