Skip to content

Commit

Permalink
debugger: correcting function utilized by KEMI
Browse files Browse the repository at this point in the history
- Since constants are used as arguments on the called function I suppose the parameters are not necessary on the parent function

(cherry picked from commit fcc4908)
  • Loading branch information
verticelo authored and miconda committed Nov 27, 2017
1 parent c45e00b commit b3f8845
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/debugger/debugger_mod.c
Expand Up @@ -595,16 +595,16 @@ static int w_dbg_sip_msg(struct sip_msg* msg, char *level, char *facility)
}

/**
* dump pv_cache contents as json
* dump pv_cache contents as json with default parameters
*/
static int ki_dbg_pv_dump(sip_msg_t* msg, char* mask, char* level)
static int ki_dbg_pv_dump(sip_msg_t* msg)
{
dbg_dump_json(msg, DBG_DP_ALL, DBG_DP_ALL);
dbg_dump_json(msg, DBG_DP_ALL, L_DBG);
return 1;
}

/**
* dump pv_cache contents as json
* dump pv_cache contents as json with explicit parameters
*/
static int ki_dbg_pv_dump_ex(sip_msg_t* msg, int mask, int level)
{
Expand Down

0 comments on commit b3f8845

Please sign in to comment.