diff --git a/afsk/main.c b/afsk/main.c index 3fdb7d5b..6d1f790d 100644 --- a/afsk/main.c +++ b/afsk/main.c @@ -1982,5 +1982,5 @@ float toAprsFormat(float input) { int mm1 = (int)((input - dd) * 60); int mm2 = (int)((input - dd - mm1/60) * 60) ; float output = dd * 100 + mm1 + mm2 * 0.01; - return(float); + return(output); }