diff options
author | Freya Murphy <freya@freyacat.org> | 2025-03-31 12:41:04 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-03-31 12:41:04 -0400 |
commit | 4dc44e8fce222a21f5eb8b86ecb226855c34999b (patch) | |
tree | 83e42cbd2cfde437a35216e9c1ee58c0af995e94 /user | |
parent | track changes (diff) | |
download | comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.tar.gz comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.tar.bz2 comus-4dc44e8fce222a21f5eb8b86ecb226855c34999b.zip |
track upstream
Diffstat (limited to 'user')
-rw-r--r-- | user/init.c | 2 | ||||
-rw-r--r-- | user/shell.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/user/init.c b/user/init.c index 98d9755..be8e393 100644 --- a/user/init.c +++ b/user/init.c @@ -20,7 +20,7 @@ typedef struct proc_s { uint_t pid; // its PID (when spawned) uint8_t e_prio; // process priority char select[3]; // identifying character, NUL, extra - char *args[MAX_ARGS]; // argument vector strings + char *args[N_ARGS]; // argument vector strings } proc_t; /* diff --git a/user/shell.c b/user/shell.c index 628e9b7..f8c13cd 100644 --- a/user/shell.c +++ b/user/shell.c @@ -27,7 +27,7 @@ typedef struct proc_s { uint_t index; // process table index int8_t prio; // process priority char select[3]; // identifying character, NUL, extra - char *args[MAX_ARGS]; // argument vector strings + char *args[N_ARGS]; // argument vector strings } proc_t; /* |