diff --git a/contrib/ee/ee.c b/contrib/ee/ee.c --- a/contrib/ee/ee.c +++ b/contrib/ee/ee.c @@ -1952,12 +1952,10 @@ { char *strng1; char *strng2; - int tmp; int equal; strng1 = string1; strng2 = string2; - tmp = 0; if ((strng1 == NULL) || (strng2 == NULL) || (*strng1 == '\0') || (*strng2 == '\0')) return(FALSE); equal = TRUE; @@ -1977,7 +1975,6 @@ strng2++; if ((*strng1 == '\0') || (*strng2 == '\0') || (*strng1 == ' ') || (*strng2 == ' ')) break; - tmp++; } return(equal); } @@ -3354,7 +3351,6 @@ int temp; int list_size; int top_offset; /* offset from top where menu items start */ - int vert_pos; /* vertical position */ int vert_size; /* vertical size for menu list item display */ int off_start = 1; /* offset from start of menu items to start display */ @@ -3424,7 +3420,6 @@ paint_menu(menu_list, max_width, max_height, list_size, top_offset, temp_win, off_start, vert_size); counter = 1; - vert_pos = 0; do { if (off_start > 2)