summaryrefslogtreecommitdiff
path: root/src/kernel/proc.h
diff options
context:
space:
mode:
authordzwdz2022-04-12 19:44:38 +0200
committerdzwdz2022-04-12 19:44:38 +0200
commit008ac1574e127162f095a75f63c4c1be5d03b6d0 (patch)
tree23c7d249ec1e7b3ca85562a0e4a62a9221fb298c /src/kernel/proc.h
parent75ec633805db108bfddb6454ff7f8d812475feaf (diff)
kernel: make all sizes unsigned, sort out the sign mess
Diffstat (limited to 'src/kernel/proc.h')
-rw-r--r--src/kernel/proc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/proc.h b/src/kernel/proc.h
index dc7525d..d754522 100644
--- a/src/kernel/proc.h
+++ b/src/kernel/proc.h
@@ -34,7 +34,7 @@ struct process {
} waits4fs; // PS_WAITS4FS
struct {
char __user *buf;
- int max_len;
+ size_t max_len;
struct fs_wait_response __user *res;
} awaited_req; // PS_WAITS4REQUEST
struct {