Converted u8_t to uint8_t and u16_t to uint16_t in the apps directory.

This commit is contained in:
Nicholas J Humfrey 2012-02-20 19:13:50 +00:00 committed by Mariano Alvira
parent 1cda3da17e
commit efab964451
61 changed files with 287 additions and 287 deletions

View file

@ -52,9 +52,9 @@ struct smtp_state {
char *from;
char *subject;
char *msg;
u8_t msgwidth;
u8_t msgheight;
u8_t line;
uint8_t msgwidth;
uint8_t msgheight;
uint8_t line;
};
static struct smtp_state s;
@ -209,7 +209,7 @@ smtp_configure(char *lhostname, uip_ipaddr_t *server)
/*---------------------------------------------------------------------------*/
unsigned char
smtp_send(char *to, char *cc, char *from, char *subject,
char *msg, u8_t msgwidth, u8_t msgheight)
char *msg, uint8_t msgwidth, uint8_t msgheight)
{
struct uip_conn *conn;