[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. c2feb98693b0ca607dd9c
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-12-27 23:17:37
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via c2feb98693b0ca607dd9c47250bbc688bad6a680 (commit) from 41f5e8d24abca6b4bde67817bc73a367bb406256 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c2feb98693b0ca607dd9c47250bbc688bad6a680 Author: Michael Black W9MDB <mdb...@ya...> Date: Sun Dec 27 17:15:57 2020 -0600 Fix uninitialized value in prosistel.c diff --git a/rotators/prosistel/prosistel.c b/rotators/prosistel/prosistel.c index 25fd64cc..1767fe9f 100644 --- a/rotators/prosistel/prosistel.c +++ b/rotators/prosistel/prosistel.c @@ -225,7 +225,7 @@ static int prosistel_rot_get_position(ROT *rot, azimuth_t *az, elevation_t *el) char cmdstr[64]; char data[20]; float posval; - int retval; + int retval = RIG_OK; int n; // Query azimuth only if the rotator has the capability to do so ----------------------------------------------------------------------- Summary of changes: rotators/prosistel/prosistel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |