Fix possible null argument in rig_test_2038

pull/1542/head
Mike Black W9MDB 2024-04-26 17:35:18 -05:00
rodzic fe0d47acef
commit 92e82a25d2
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -3104,7 +3104,7 @@ int rig_test_2038(RIG *rig)
if (s == NULL) { failed = 1; }
else rig_debug(RIG_DEBUG_VERBOSE, "%s: time_t 2038 test = 0x%08lx:%s", __func__, x,
s);
s == NULL ? "NULL" : s);
#endif