Remove hamlib_settings.c warning message unti this is implemented

pull/1557/head
Mike Black W9MDB 2024-05-23 11:04:36 -05:00
rodzic cd4c5e5cdd
commit 0652f65d0e
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -1225,9 +1225,13 @@ HAMLIB_EXPORT(int) rig_settings_load_all(char *settings_file)
if (fp == NULL)
{
#if 0 // until we actually implement this
rig_debug(RIG_DEBUG_VERBOSE, "%s: settings_file (%s): %s\n", __func__,
settings_file, strerror(errno));
return -RIG_EINVAL;
#else
return RIG_OK;
#endif
}
rig_debug(RIG_DEBUG_TRACE, "%s: opened %s\n", __func__, settings_file);