old compilers don't like mixed variable declaration and code

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2662 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.9
Stéphane Fillod, F8CFE 2009-02-23 21:52:56 +00:00
rodzic 2598021948
commit 951c9acb74
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -14,7 +14,7 @@
* FT-950, FT-450. Much testing remains. -N0NB
*
*
* $Id: newcat.c,v 1.54 2009-02-15 09:54:17 mrtembry Exp $
* $Id: newcat.c,v 1.55 2009-02-23 21:52:56 fillods Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -4342,8 +4342,9 @@ int newcat_get_faststep(RIG * rig, ncboolean * fast_step)
int newcat_get_rigid(RIG * rig)
{
struct newcat_priv_data *priv;
priv = (struct newcat_priv_data *)rig->state.priv;
const char * s;
priv = (struct newcat_priv_data *)rig->state.priv;
s = NULL;
rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);