summaryrefslogtreecommitdiff
path: root/src/init/shell.c
diff options
context:
space:
mode:
authordzwdz2022-03-27 16:38:14 +0200
committerdzwdz2022-03-27 16:38:14 +0200
commitb74ef85cce1ceb5840e9f3bdc43558b75740b83b (patch)
treecb347547182d708b370a6af411cad02bce23a847 /src/init/shell.c
parent1fc26ce8e5b397f7301d783fbd4c776e5b5b5275 (diff)
kernel/vfs: partial ATA drive support
Diffstat (limited to 'src/init/shell.c')
-rw-r--r--src/init/shell.c2
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 = "/";