diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-03-18 23:18:11 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-03 00:22:08 +0200 |
commit | 0209b2c932994e9ca55d39d98a83ea02aacd1332 (patch) | |
tree | f8778cca656943ee36193b49a7727557ba82319b /isofs | |
parent | 6f3d68bc8b46bdc7b0f5f43918744d99746672a2 (diff) | |
download | hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.tar.gz hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.tar.bz2 hurd-0209b2c932994e9ca55d39d98a83ea02aacd1332.zip |
Modernize code by removing use of old style definitions.
Also add -Werror=old-style-definition to enforce new code.
Message-Id: <ZBZ+8xf7GHy2RT/h@jupiter.tail36e24.ts.net>
Diffstat (limited to 'isofs')
-rw-r--r-- | isofs/inode.c | 2 | ||||
-rw-r--r-- | isofs/main.c | 6 | ||||
-rw-r--r-- | isofs/pager.c | 10 |
3 files changed, 9 insertions, 9 deletions
diff --git a/isofs/inode.c b/isofs/inode.c index 70fcd87e..f78f336a 100644 --- a/isofs/inode.c +++ b/isofs/inode.c @@ -379,7 +379,7 @@ diskfs_get_translator (struct node *np, char **namep, u_int *namelen) } void -diskfs_shutdown_soft_ports () +diskfs_shutdown_soft_ports (void) { /* Should initiate termination of internally held pager ports (the only things that should be soft) XXX */ diff --git a/isofs/main.c b/isofs/main.c index d16e7286..76e9766e 100644 --- a/isofs/main.c +++ b/isofs/main.c @@ -46,7 +46,7 @@ struct sblock *sblock; /* Fetch the root node */ static void -fetch_root () +fetch_root (void) { struct lookup_context ctx; ino_t id; @@ -73,7 +73,7 @@ fetch_root () /* Find and read the superblock. */ static void -read_sblock () +read_sblock (void) { struct voldesc *vd; struct sblock * volatile sb = 0; @@ -153,7 +153,7 @@ main (int argc, char **argv) /* Nothing to do for read-only medium */ error_t -diskfs_reload_global_state () +diskfs_reload_global_state (void) { return 0; } diff --git a/isofs/pager.c b/isofs/pager.c index c2da2c0b..7838bdfc 100644 --- a/isofs/pager.c +++ b/isofs/pager.c @@ -258,7 +258,7 @@ allow_pager_softrefs (struct node *np) static void -block_caching () +block_caching (void) { error_t block_cache (void *arg) { @@ -274,7 +274,7 @@ block_caching () } static void -enable_caching () +enable_caching (void) { error_t enable_cache (void *arg) { @@ -305,7 +305,7 @@ enable_caching () /* Tell diskfs if there are pagers exported, and if none, then prevent any new ones from showing up. */ int -diskfs_pager_users () +diskfs_pager_users (void) { int npagers = ports_count_bucket (pager_bucket); @@ -334,7 +334,7 @@ diskfs_pager_users () /* Return the bitwise or of the maximum prot parameter (the second arg to diskfs_get_filemap) for all active user pagers. */ vm_prot_t -diskfs_max_user_pager_prot () +diskfs_max_user_pager_prot (void) { /* We never allow writing, so there's no need to carefully check it. */ return VM_PROT_READ | VM_PROT_EXECUTE; @@ -354,7 +354,7 @@ diskfs_get_filemap_pager_struct (struct node *np) /* Shutdown all the pagers. */ void -diskfs_shutdown_pager () +diskfs_shutdown_pager (void) { /* Because there's no need to ever sync, we don't have to do anything here. */ |