diff options
| author | Frans Kaashoek <kaashoek@mit.edu> | 2022-08-17 20:37:22 -0400 |
|---|---|---|
| committer | Frans Kaashoek <kaashoek@mit.edu> | 2022-08-17 20:37:22 -0400 |
| commit | 1d4c437ea17e3254fe6138fd8dd181de413a43bf (patch) | |
| tree | 8359939545d4ead02d4f1e888b839b0669ee4ed1 /kernel/proc.c | |
| parent | 7a6d57235c41df877b3fb2322cf770e65e864058 (diff) | |
| download | xv6-labs-2022-1d4c437ea17e3254fe6138fd8dd181de413a43bf.tar.xz xv6-labs-2022-1d4c437ea17e3254fe6138fd8dd181de413a43bf.zip | |
Use uint64 (thanks carlclone and Harry Porter)
Diffstat (limited to 'kernel/proc.c')
| -rw-r--r-- | kernel/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/proc.c b/kernel/proc.c index 580b3b6..3bb2618 100644 --- a/kernel/proc.c +++ b/kernel/proc.c @@ -259,7 +259,7 @@ userinit(void) int growproc(int n) { - uint sz; + uint64 sz; struct proc *p = myproc(); sz = p->sz; |
