diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-03 01:07:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-07 20:08:01 -0700 |
commit | 4458b5a3cd3f88188c820cd0763f4e1d99fff311 (patch) | |
tree | d27ea0b4bb1036cc52831f8435a5d139ce37b45f /src/test | |
parent | 091582c446319fe4a79154153ece5372b2faec83 (diff) |
altos/test: Fix warning in ao_aprs_test
Was not forward-declaring ao_radio_send_aprs, causing a warning
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/ao_aprs_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ao_aprs_test.c b/src/test/ao_aprs_test.c index dd5eac4d..69147786 100644 --- a/src/test/ao_aprs_test.c +++ b/src/test/ao_aprs_test.c @@ -46,7 +46,7 @@ ao_aprs_bit(uint8_t bit) #endif void -ao_radio_send_lots(ao_radio_fill_func fill); +ao_radio_send_aprs(ao_radio_fill_func fill); #include <ao_aprs.c> |