Skip to content

Commit

Permalink
I forgot two semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinDMorrison committed Nov 12, 2024
1 parent b629953 commit c789fd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/wireless/lpwan/rn2483/rn2483.c
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ static int rn2483_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
err = rn2483_radio_set_sf(priv, *ptr);
if(!err)
{
priv->config.sf = *ptr
priv->config.sf = *ptr;
}
break;
}
Expand All @@ -564,7 +564,7 @@ static int rn2483_ioctl(FAR struct file *filep, int cmd, unsigned long arg)
err = rn2483_radio_set_prlen(priv, *ptr);
if (!err)
{
priv->config.prlen = *ptr
priv->config.prlen = *ptr;
}
break;

Expand Down

0 comments on commit c789fd7

Please sign in to comment.