continue over empty channels

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2017 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.5
Stéphane Fillod, F8CFE 2005-04-15 21:14:10 +00:00
rodzic 26dfe2aa7d
commit d4d86f0d05
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -4,7 +4,7 @@
* This program exercises the backup and restore of a radio * This program exercises the backup and restore of a radio
* using Hamlib. CSV primitives * using Hamlib. CSV primitives
* *
* $Id: memcsv.c,v 1.6 2005-01-24 23:04:21 fillods Exp $ * $Id: memcsv.c,v 1.7 2005-04-15 21:14:10 fillods Exp $
* *
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
@ -83,7 +83,7 @@ int csv_save (RIG *rig, const char *outfilename)
if (status == -RIG_ENAVAIL ) { if (status == -RIG_ENAVAIL ) {
/* empty channel */ /* empty channel */
return RIG_OK; continue;
} }
if (status != RIG_OK ) { if (status != RIG_OK ) {