diff --git a/src/main.rs b/src/main.rs index b02de831ead069cfa17ba0e67c6d3a60a6f696ca..a9e89aad1cbee42c97ece674510c740cd81f465d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -68,7 +68,7 @@ async fn xmit_test( let mut buf = [0; MAX_PACKET_LEN]; let mut pkt = Packet::new(&mut buf); pkt.add_identification( - Identification::new(config.icon, &config.callsign, config.ssid) + Identification::new(&config.callsign, config.ssid, config.icon) .context("Invalid identification")?, ) .map_err(|e| anyhow!("Could not add identification to packet: {e}"))?;