Skip to content

Commit

Permalink
arch: cxd56xx: Fix gnss compile error
Browse files Browse the repository at this point in the history
Fix a compile error when CONFIG_CXD56_GNSS_CEP_ON_SPIFLASH is enabled.
  • Loading branch information
SPRESENSE committed Oct 3, 2024
1 parent 34d247f commit 1977bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/src/cxd56xx/cxd56_gnss.c
Original file line number Diff line number Diff line change
Expand Up @@ -2294,7 +2294,7 @@ cxd56_gnss_read_cep_file(struct file *fp, int32_t offset,
if (offset + len > g_ceplen)
{
ret = -ENOENT;
goto _err0;
goto err0;
}

buf = &g_cepdata[offset];
Expand Down

0 comments on commit 1977bf3

Please sign in to comment.