diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-05-09 00:31:36 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-10 02:51:46 +0200 |
commit | 9fe5e6bf0ccaccec9c5ea2c3a2cea86dbd9c78dc (patch) | |
tree | 927b94772ceaa8f6e5bcbb2ddeadf933df8bb814 /procfs | |
parent | 19558c940e81d405dbda0ea1dd29549f34b5aa2a (diff) | |
download | hurd-9fe5e6bf0ccaccec9c5ea2c3a2cea86dbd9c78dc.tar.gz hurd-9fe5e6bf0ccaccec9c5ea2c3a2cea86dbd9c78dc.tar.bz2 hurd-9fe5e6bf0ccaccec9c5ea2c3a2cea86dbd9c78dc.zip |
Style tweaks
Message-Id: <20230508213136.608575-42-bugaevc@gmail.com>
Diffstat (limited to 'procfs')
-rw-r--r-- | procfs/rootdir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/procfs/rootdir.c b/procfs/rootdir.c index 1c7181b1..908cfe6c 100644 --- a/procfs/rootdir.c +++ b/procfs/rootdir.c @@ -683,8 +683,8 @@ rootdir_gc_swaps (void *hook, char **contents, ssize_t *contents_len) name = argz_next (names, names_len, name); } - vm_deallocate (mach_task_self(), (vm_offset_t) free, nfree * sizeof(*free)); - vm_deallocate (mach_task_self(), (vm_offset_t) size, nsize * sizeof(*size)); + vm_deallocate (mach_task_self(), (vm_offset_t) free, nfree * sizeof (*free)); + vm_deallocate (mach_task_self(), (vm_offset_t) size, nsize * sizeof (*size)); vm_deallocate (mach_task_self(), (vm_offset_t) names, names_len); out: |