Fix prosistel printf

pull/139/head
Michael Black 2019-11-08 12:31:56 -06:00
rodzic 2200c2c33e
commit 0b92fcb5c3
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6599353EC683404D
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -219,7 +219,7 @@ static int prosistel_rot_get_position(ROT *rot, azimuth_t *az, elevation_t *el)
}
posval /= 10.0;
rig_debug(RIG_DEBUG_VERBOSE, "%s got position from '%s' converted to %d\n",
rig_debug(RIG_DEBUG_VERBOSE, "%s got position from '%s' converted to %f\n",
__func__, data, posval);
*az = (azimuth_t) posval;
@ -240,7 +240,7 @@ static int prosistel_rot_get_position(ROT *rot, azimuth_t *az, elevation_t *el)
return RIG_EPROTO;
}
rig_debug(RIG_DEBUG_VERBOSE, "%s got position from '%s' converted to %d\n",
rig_debug(RIG_DEBUG_VERBOSE, "%s got position from '%s' converted to %f\n",
__func__, data, posval);
*el = (elevation_t) posval;