Skip to content

Commit

Permalink
Fix uninitialized value in prosistel.c
Browse files Browse the repository at this point in the history
  • Loading branch information
mdblack98 committed Dec 27, 2020
1 parent 41f5e8d commit c2feb98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rotators/prosistel/prosistel.c
Expand Up @@ -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
Expand Down

0 comments on commit c2feb98

Please sign in to comment.