Fix some cppcheck unused/unreadVariables

This commit is contained in:
Chris Young 2014-04-05 19:51:17 +01:00
parent b301a11140
commit c1a32d7c6e
1 changed files with 2 additions and 3 deletions

View File

@ -196,9 +196,8 @@ int ami_find_tab_bw(struct gui_window_2 *gwin, struct browser_window *bw)
struct browser_window *ami_find_tab(int window, int tab) struct browser_window *ami_find_tab(int window, int tab)
{ {
int windows = 0, tabs = 0; int windows = 0;
struct nsObject *node, *nnode; struct nsObject *node, *nnode;
struct gui_window_2 *gwin;
if(!IsMinListEmpty(window_list)) if(!IsMinListEmpty(window_list))
{ {
@ -569,7 +568,7 @@ STATIC VOID rx_windows(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((
STATIC VOID rx_active(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused))) STATIC VOID rx_active(struct ARexxCmd *cmd, struct RexxMsg *rxm __attribute__((unused)))
{ {
int windows = 0, tabs = 0; int windows = 0;
int window = 0, tab = 0; int window = 0, tab = 0;
struct browser_window *bw = curbw; struct browser_window *bw = curbw;
struct nsObject *node, *nnode; struct nsObject *node, *nnode;