Fix types to make cc65 happy
This commit is contained in:
parent
727c5a2dbe
commit
fb7fc1990d
1 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
||||||
*
|
*
|
||||||
* Author: Adam Dunkels <adam@sics.se>
|
* Author: Adam Dunkels <adam@sics.se>
|
||||||
*
|
*
|
||||||
* $Id: shell-tcpsend.c,v 1.3 2009/03/17 20:12:55 adamdunkels Exp $
|
* $Id: shell-tcpsend.c,v 1.4 2009/03/17 21:49:44 adamdunkels Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
@ -135,6 +135,7 @@ telnet_connected(struct telnet_state *s)
|
||||||
PROCESS_THREAD(shell_tcpsend_process, ev, data)
|
PROCESS_THREAD(shell_tcpsend_process, ev, data)
|
||||||
{
|
{
|
||||||
char *next;
|
char *next;
|
||||||
|
const char *dummy;
|
||||||
struct shell_input *input;
|
struct shell_input *input;
|
||||||
uint16_t port;
|
uint16_t port;
|
||||||
|
|
||||||
|
@ -149,7 +150,7 @@ PROCESS_THREAD(shell_tcpsend_process, ev, data)
|
||||||
*next = 0;
|
*next = 0;
|
||||||
++next;
|
++next;
|
||||||
strncpy(server, data, sizeof(server));
|
strncpy(server, data, sizeof(server));
|
||||||
port = shell_strtolong(next, &next);
|
port = shell_strtolong(next, &dummy);
|
||||||
|
|
||||||
running = 1;
|
running = 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue