Skip to content

Commit

Permalink
Fix misspelling of function
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Sep 5, 2010
1 parent 61bc06d commit c850fd5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ load_reverse_dns_popup (WINDOW * ip_detail_win, char *addr)
}

static void
scheme_choosen (char *name)
scheme_chosen (char *name)
{
if (strcmp ("Monochrome/Default", name) == 0)
color_scheme = MONOCHROME;
Expand All @@ -664,7 +664,7 @@ load_schemes_win (WINDOW * schemes_win)
my_items = (ITEM **) malloc (sizeof (ITEM *) * (n_choices + 1));
for (i = 0; i < n_choices; ++i) {
my_items[i] = new_item (choices[i], choices[i]);
set_item_userptr (my_items[i], scheme_choosen);
set_item_userptr (my_items[i], scheme_chosen);
}
my_items[n_choices] = (ITEM *) NULL;

Expand Down

0 comments on commit c850fd5

Please sign in to comment.