Fix some cppcheck unused/unreadVariables
This commit is contained in:
parent
b301a11140
commit
c1a32d7c6e
|
@ -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)
|
||||
{
|
||||
int windows = 0, tabs = 0;
|
||||
int windows = 0;
|
||||
struct nsObject *node, *nnode;
|
||||
struct gui_window_2 *gwin;
|
||||
|
||||
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)))
|
||||
{
|
||||
int windows = 0, tabs = 0;
|
||||
int windows = 0;
|
||||
int window = 0, tab = 0;
|
||||
struct browser_window *bw = curbw;
|
||||
struct nsObject *node, *nnode;
|
||||
|
|
Loading…
Reference in New Issue