Rename and fix AMPMETHOD1VGET macro

Drop the V which means VFO and add missing parentheses.
pull/1726/head
Daniele Forsi IU5HKX 2025-05-24 19:11:43 +02:00
rodzic 8a191213e6
commit aa5c232def
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -104,7 +104,7 @@ typedef struct Amp {
/*
* declare wrapper method with one output argument besides AMP*
*/
#define AMPMETHOD1VGET(f, t1) t1 f \
#define AMPMETHOD1GET(f, t1) t1 f () \
{ t1 _##t1; self->error_status = amp_##f(self->amp, &_##t1); return _##t1; }