This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit 71ce94a13ec725ea969002d63818074f18fd4ae3 Author: YAMAMOTO Takashi <yamam...@midokura.com> AuthorDate: Tue Aug 26 15:24:17 2025 +0900 system/dd/dd_main.c: fix a typo in a comment Found by the CI. Signed-off-by: YAMAMOTO Takashi <yamam...@midokura.com> --- system/dd/dd_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/dd/dd_main.c b/system/dd/dd_main.c index f73d9a999..e666274e1 100644 --- a/system/dd/dd_main.c +++ b/system/dd/dd_main.c @@ -81,7 +81,7 @@ struct dd_s uint32_t nsectors; /* Number of sectors to transfer */ uint32_t skip; /* The number of sectors skipped on input */ uint32_t seek; /* The number of sectors seeked on output */ - int oflags; /* The open flags on output deivce */ + int oflags; /* The open flags on output device */ bool eof; /* true: The end of the input or output file has been hit */ size_t sectsize; /* Size of one sector */ size_t nbytes; /* Number of valid bytes in the buffer */