remove unused variables

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1976 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.4
Stéphane Fillod, F8CFE 2005-04-03 20:40:21 +00:00
rodzic cb589fcd25
commit 449283c25c
1 zmienionych plików z 3 dodań i 4 usunięć

Wyświetl plik

@ -2,7 +2,7 @@
* Hamlib Kenwood backend - TM-V7 description
* Copyright (c) 2004-2005 by Stephane Fillod
*
* $Id: tmv7.c,v 1.11 2005-04-03 20:14:26 fillods Exp $
* $Id: tmv7.c,v 1.12 2005-04-03 20:40:21 fillods Exp $
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
@ -655,9 +655,8 @@ int tmv7_set_channel(RIG *rig, const channel_t *chan)
/*-------------------------------------------------------------------- */
int tmv7_open(RIG *rig)
{
char ackbuf[ACKBUF_LEN],*strl,*stru;
int retval,i,ack_len=ACKBUF_LEN;
const freq_range_t frend=RIG_FRNG_END;
char ackbuf[ACKBUF_LEN];
int retval,ack_len=ACKBUF_LEN;
/* just to be sure it's a TM-V7 */
retval = kenwood_transaction(rig, "ID"EOM, 3, ackbuf, &ack_len);