diff options
| author | Miklos Vajna <vmiklos@frugalware.org> | 2011-01-03 03:22:18 +0100 | 
|---|---|---|
| committer | Miklos Vajna <vmiklos@frugalware.org> | 2011-01-03 03:22:18 +0100 | 
| commit | a5e6aa1ea309c774d153d0d4cc59cb0c3c0e1cd4 (patch) | |
| tree | 9b341f7199044d51f27c2860ef7dc9067e0001ca | |
| parent | cb6d3c9e9ec93705022ec24451246265c7841ebe (diff) | |
Unused parameters
| -rw-r--r-- | skype/skype.c | 7 | 
1 files changed, 7 insertions, 0 deletions
| diff --git a/skype/skype.c b/skype/skype.c index 98d46cea..7ac0e9b1 100644 --- a/skype/skype.c +++ b/skype/skype.c @@ -1430,6 +1430,9 @@ GList *skype_buddy_action_list(bee_user_t *bu)  {  	static GList *ret; +	/* Unused parameter */ +	bu = bu; +  	if (ret == NULL) {  		static const struct buddy_action ba[3] = {  			{"CALL", "Initiate a call" }, @@ -1444,6 +1447,10 @@ GList *skype_buddy_action_list(bee_user_t *bu)  void *skype_buddy_action(struct bee_user *bu, const char *action, char * const args[], void *data)  { +	/* Unused parameters */ +	args = args; +	data = data; +  	if (!g_strcasecmp(action, "CALL"))  		skype_call(bu->ic, bu->handle);  	else if (!g_strcasecmp(action, "HANGUP")) | 
