'free_packet' in csma.c conflicted with 'free_packet' in maca.c

This commit is contained in:
kkrentz 2014-02-07 11:51:01 -08:00
parent 648d3576a0
commit 4493783ce9
8 changed files with 10 additions and 10 deletions

View file

@ -94,7 +94,7 @@ void main(void) {
check_maca();
while((p = rx_packet())) {
if(p) free_packet(p);
if(p) maca_free_packet(p);
}
p = get_free_packet();