Compare commits

..

No commits in common. "eead012999abddd34ca221afcb4a4ba8cb10b174" and "901072385e195a5c3c4391378fb3efa5f004db7e" have entirely different histories.

3 changed files with 8 additions and 8 deletions

View File

View File

@ -286,9 +286,9 @@ static int sm_tx_waitseq(s_tx_emsidat *d)
static s_states st_tx_emsidat[] =
{
{ "sm_tx_init", (int (*)(void *))sm_tx_init },
{ "sm_tx_senddat", (int (*)(void *))sm_tx_senddat },
{ "sm_tx_waitseq", (int (*)(void *))sm_tx_waitseq }
{ "sm_tx_init", sm_tx_init },
{ "sm_tx_senddat", sm_tx_senddat },
{ "sm_tx_waitseq", sm_tx_waitseq }
};
int emsi_send_emsidat(s_emsi *local_emsi)
@ -570,10 +570,10 @@ static int sm_rx_getdat(s_rx_emsidat *d)
static s_states st_rx_emsidat[] =
{
{ "sm_rx_init", (int (*)(void *))sm_rx_init },
{ "sm_rx_sendnak", (int (*)(void *))sm_rx_sendnak },
{ "sm_rx_waitseq", (int (*)(void *))sm_rx_waitseq },
{ "sm_rx_getdat", (int (*)(void *))sm_rx_getdat }
{ "sm_rx_init", sm_rx_init },
{ "sm_rx_sendnak", sm_rx_sendnak },
{ "sm_rx_waitseq", sm_rx_waitseq },
{ "sm_rx_getdat", sm_rx_getdat }
};
int emsi_recv_emsidat(s_emsi *remote_emsi)

View File

@ -72,7 +72,7 @@
struct states
{
const char *st_name;
int (*proc)(void *);
int (*proc)();
};
typedef struct states s_states;