Skip to content

Commit

Permalink
websocket: removed static from declaration of ws_rm_delay_interval
Browse files Browse the repository at this point in the history
- it is used as external in another source file
- GH #1771
  • Loading branch information
miconda committed Dec 20, 2018
1 parent ae4087e commit d5e40d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/websocket/websocket.c
Expand Up @@ -61,7 +61,7 @@ static int ws_init_rpc(void);
sl_api_t ws_slb;

#define WS_DEFAULT_RM_DELAY_INTERVAL 5
static int ws_rm_delay_interval = WS_DEFAULT_RM_DELAY_INTERVAL;
int ws_rm_delay_interval = WS_DEFAULT_RM_DELAY_INTERVAL;

#define DEFAULT_TIMER_INTERVAL 1
static int ws_timer_interval = DEFAULT_TIMER_INTERVAL;
Expand Down

0 comments on commit d5e40d5

Please sign in to comment.