From 0d58d31f3a530ba9607e8ab49a8b5a9d1b24391a Mon Sep 17 00:00:00 2001 From: troth Date: Wed, 12 Feb 2003 17:47:47 +0000 Subject: [PATCH] Remove need for inttypes.h. git-svn-id: svn://svn.savannah.nongnu.org/avrdude/trunk/avrdude@188 81a1dc3b-b13d-400b-aceb-764788c761c2 --- stk500.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stk500.c b/stk500.c index c68f847d..b2508a20 100644 --- a/stk500.c +++ b/stk500.c @@ -36,7 +36,6 @@ #include #include #include -#include #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;