From 75f86c0eaeec9390acca9fdc2db390bcd002ff19 Mon Sep 17 00:00:00 2001 From: "Theodore A. Roth" 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@188 81a1dc3b-b13d-400b-aceb-764788c761c2 --- avrdude/stk500.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/avrdude/stk500.c b/avrdude/stk500.c index c68f847d..b2508a20 100644 --- a/avrdude/stk500.c +++ b/avrdude/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;