Remove need for inttypes.h.
git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@188 81a1dc3b-b13d-400b-aceb-764788c761c2
This commit is contained in:
parent
0ac9932d83
commit
0d58d31f3a
3
stk500.c
3
stk500.c
|
@ -36,7 +36,6 @@
|
|||
#include <errno.h>
|
||||
#include <termios.h>
|
||||
#include <sys/time.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include "avr.h"
|
||||
#include "pgm.h"
|
||||
|
@ -680,7 +679,7 @@ void stk500_close(PROGRAMMER * pgm)
|
|||
}
|
||||
|
||||
|
||||
static int stk500_loadaddr(PROGRAMMER * pgm, uint16_t addr)
|
||||
static int stk500_loadaddr(PROGRAMMER * pgm, unsigned int addr)
|
||||
{
|
||||
unsigned char buf[16];
|
||||
int tries;
|
||||
|
|
Loading…
Reference in New Issue