kopia lustrzana https://github.com/Hamlib/Hamlib
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/786pull/799/head
rodzic
5db5c47ce2
commit
004ddafb87
include/hamlib
|
@ -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
|
||||
|
|
Ładowanie…
Reference in New Issue