[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 5d2f5012c0623411be023
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-12-22 14:34:23
|
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 5d2f5012c0623411be02308167a85cab64a7e328 (commit) from 3211e3aea18f0669344d51e74c5a72f1a273f794 (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 5d2f5012c0623411be02308167a85cab64a7e328 Author: Michael Black W9MDB <mdb...@ya...> Date: Tue Dec 22 08:34:04 2020 -0600 Fix newcat.c uninitialized var diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 7099384b..7c231116 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -2857,7 +2857,7 @@ int newcat_set_powerstat(RIG *rig, powerstat_t status) struct rig_state *state = &rig->state; struct newcat_priv_data *priv = (struct newcat_priv_data *)rig->state.priv; int retval; - int i; + int i = 0; int retry_save; char ps; diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index f784d321..bf8b796a 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20201219" +#define NEWCAT_VER "20201222" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129 ----------------------------------------------------------------------- Summary of changes: rigs/yaesu/newcat.c | 2 +- rigs/yaesu/newcat.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |