Skip to content

Commit 6f8ac80

Browse files
committed
igate: fix build errors
1 parent d06b644 commit 6f8ac80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/igate.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ int main (int argc, char *argv[])
209209
packet_t pp;
210210

211211
memset (&audio_config, 0, sizeof(audio_config));
212-
audio_config.adev[0].num_chans = 2;
212+
audio_config.adev[0].num_channels = 2;
213213
strlcpy (audio_config.achan[0].mycall, "WB2OSZ-1", sizeof(audio_config.achan[0].mycall));
214214
strlcpy (audio_config.achan[1].mycall, "WB2OSZ-2", sizeof(audio_config.achan[0].mycall));
215215

@@ -228,7 +228,7 @@ int main (int argc, char *argv[])
228228

229229
memset (&digi_config, 0, sizeof(digi_config));
230230

231-
igate_init(&igate_config, &digi_config);
231+
igate_init(&audio_config, &igate_config, &digi_config, 0);
232232

233233
while (igate_sock == -1) {
234234
SLEEP_SEC(1);
@@ -269,7 +269,7 @@ int main (int argc, char *argv[])
269269
SLEEP_SEC (20);
270270
text_color_set(DW_COLOR_INFO);
271271
dw_printf ("Send received packet\n");
272-
send_msg_to_server ("W1ABC>APRS:?", strlen("W1ABC>APRS:?");
272+
send_msg_to_server ("W1ABC>APRS:?", strlen("W1ABC>APRS:?"));
273273
}
274274
#endif
275275
return 0;

0 commit comments

Comments
 (0)