diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-02-12 12:27:25 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-02-12 12:27:25 +0100 |
commit | 6dd6bd736710d0dfb285f225c51e3f90436126b9 (patch) | |
tree | f68ba252fee51039176e84d8f711af89c2fd99c6 /utils | |
parent | 035302a63134f95eef7c04430b0aae07f5634b94 (diff) | |
download | hurd-6dd6bd736710d0dfb285f225c51e3f90436126b9.tar.gz hurd-6dd6bd736710d0dfb285f225c51e3f90436126b9.tar.bz2 hurd-6dd6bd736710d0dfb285f225c51e3f90436126b9.zip |
Fix warning
* utils/msgport.c (cmd_umask): Use int instead of mode_t for umask,
since msg_get_init_int takes an int*.
Diffstat (limited to 'utils')
-rw-r--r-- | utils/msgport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/msgport.c b/utils/msgport.c index accdb644..c96fdec8 100644 --- a/utils/msgport.c +++ b/utils/msgport.c @@ -401,7 +401,7 @@ error_t cmd_umask (pid_t pid, mach_port_t msgport, int argc, char *argv[]) { error_t err; - mode_t umask; + int umask; task_t task; process_t proc = getproc (); |