Skip to content
Snippets Groups Projects
Commit 198f258d authored by Stephen D's avatar Stephen D
Browse files

fix param order

parent 4c9cb816
No related branches found
No related tags found
No related merge requests found
Pipeline #3960 failed
......@@ -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}"))?;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment