Fix python build. For some reason casting tp vfo_t in the RIG_VFO_N macro broke the swig parsing

https://github.com/Hamlib/Hamlib/issues/786
pull/799/head
Mike Black W9MDB 2021-09-10 23:29:32 -05:00
rodzic 5db5c47ce2
commit 004ddafb87
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -428,7 +428,7 @@ typedef unsigned int vfo_t;
/** \brief '' -- used in caps */
#define RIG_VFO_N(n) ((vfo_t)(1u<<(n)))
#define RIG_VFO_N(n) (1u<<(n))
/** \brief \c VFONone -- vfo unknown */
#define RIG_VFO_NONE 0