mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Increased shell limit for line length.
Yes this is hacky, I'll fix it with a better shell.
This commit is contained in:
parent
7d39906acc
commit
fc811af890
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ void get_and_run_command()
|
|||
printf("root@sortix %s # ", getenv("PWD"));
|
||||
fflush(stdout);
|
||||
|
||||
const size_t commandsize = 128;
|
||||
const size_t commandsize = 1024;
|
||||
char command[commandsize + 1];
|
||||
size_t commandused = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue