Browse Source

FST: Mark format_session_state_extra() static

This is not used outside fst_ctrl_iface.c.

Signed-off-by: Jouni Malinen <j@w1.fi>
Jouni Malinen 9 years ago
parent
commit
c836aa267e
1 changed files with 2 additions and 5 deletions
  1. 2 5
      src/fst/fst_ctrl_iface.c

+ 2 - 5
src/fst/fst_ctrl_iface.c

@@ -32,17 +32,14 @@ static struct fst_group * get_fst_group_by_id(const char *id)
 
 
 /* notifications */
-Boolean format_session_state_extra(const union fst_event_extra *extra,
-				   char *buffer, int size)
+static Boolean format_session_state_extra(const union fst_event_extra *extra,
+					  char *buffer, size_t size)
 {
 	int len;
 	char reject_str[32] = FST_CTRL_PVAL_NONE;
 	const char *initiator = FST_CTRL_PVAL_NONE;
 	const struct fst_event_extra_session_state *ss;
 
-	if (!extra)
-		return TRUE;
-
 	ss = &extra->session_state;
 	if (ss->new_state != FST_SESSION_STATE_INITIAL)
 		return TRUE;