diff options
author | Topi Miettinen <toiwoton@gmail.com> | 2015-01-01 19:40:07 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-01-01 14:39:17 -0500 |
commit | e65476622db43f7b9c413009072fc9603b8d6ba4 (patch) | |
tree | 7d6a6876be9e705eec48e20e86085faf84458e61 /src/core/namespace.c | |
parent | 257e968d8c726e1a7be7b455d0e6ad29b5d0756c (diff) |
Type of mount(2) flags is unsigned long
Diffstat (limited to 'src/core/namespace.c')
-rw-r--r-- | src/core/namespace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c index 5b408e06ac..4b8dbdd0d8 100644 --- a/src/core/namespace.c +++ b/src/core/namespace.c @@ -422,7 +422,7 @@ int setup_namespace( bool private_dev, ProtectHome protect_home, ProtectSystem protect_system, - unsigned mount_flags) { + unsigned long mount_flags) { BindMount *m, *mounts = NULL; unsigned n; |