From 42aad0d1adee916160f7a6af116a59b51f231715 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:16:23 +0200 Subject: [PATCH] sys/shell: fix typos --- sys/shell/commands/sc_disk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/shell/commands/sc_disk.c b/sys/shell/commands/sc_disk.c index 1c54eef879..037b1be442 100644 --- a/sys/shell/commands/sc_disk.c +++ b/sys/shell/commands/sc_disk.c @@ -142,7 +142,7 @@ int _read_bytes(int argc, char **argv) /* calculate sector and offset position */ sector = (offset / ssize) + 1; offset = (offset % ssize); - /* preapre buffer (size must be a multiple of sector size) */ + /* prepare buffer (size must be a multiple of sector size) */ unsigned char read_buf[((length / ssize) + 1) * 512]; /* read from several sectors */