Changeset c7336ba
- Timestamp:
- 2013-02-16T14:03:56Z (12 years ago)
- Branches:
- master
- Children:
- 3a92020
- Parents:
- 78e103e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/skype/skype.c
r78e103e rc7336ba 1591 1591 1592 1592 if (ret == NULL) { 1593 static const struct buddy_action ba[ 3] = {1593 static const struct buddy_action ba[2] = { 1594 1594 {"CALL", "Initiate a call" }, 1595 1595 {"HANGUP", "Hang up a call" }, 1596 1596 }; 1597 1598 ret = g_list_prepend(ret, (void *) ba + 0); 1597 int i; 1598 1599 for (i = 0; i < ARRAY_SIZE(ba); i++) 1600 ret = g_list_prepend(ret, (void *)(ba + i)); 1599 1601 } 1600 1602
Note: See TracChangeset
for help on using the changeset viewer.