summaryrefslogtreecommitdiff
path: root/user/init.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--user/init.c2
1 files changed, 1 insertions, 1 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;
/*