diff options
author | dzwdz | 2022-03-27 16:38:14 +0200 |
---|---|---|
committer | dzwdz | 2022-03-27 16:38:14 +0200 |
commit | b74ef85cce1ceb5840e9f3bdc43558b75740b83b (patch) | |
tree | cb347547182d708b370a6af411cad02bce23a847 /src/init/shell.c | |
parent | 1fc26ce8e5b397f7301d783fbd4c776e5b5b5275 (diff) |
kernel/vfs: partial ATA drive support
Diffstat (limited to 'src/init/shell.c')
-rw-r--r-- | src/init/shell.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/shell.c b/src/init/shell.c index 0113866..5612f35 100644 --- a/src/init/shell.c +++ b/src/init/shell.c @@ -46,7 +46,7 @@ static int readline(char *buf, size_t max) { static void cmd_cat_ls(const char *args, bool ls) { int fd; - static char buf[256]; + static char buf[512]; int len; // first used for strlen(args), then length of buffer if (!args) args = "/"; |