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 /storeio | |
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 'storeio')
-rw-r--r-- | storeio/dev.c | 2 | ||||
-rw-r--r-- | storeio/pager.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/storeio/dev.c b/storeio/dev.c index 4f48d081..c87400c0 100644 --- a/storeio/dev.c +++ b/storeio/dev.c @@ -392,7 +392,7 @@ dev_read (struct dev *dev, off_t offs, size_t whole_amount, { error_t err; int allocated_buf = 0; - error_t ensure_buf () + error_t ensure_buf (void) { if (*len < whole_amount) { diff --git a/storeio/pager.c b/storeio/pager.c index 01a1525c..11bf4692 100644 --- a/storeio/pager.c +++ b/storeio/pager.c @@ -144,7 +144,7 @@ static struct pager_requests *pager_requests; /* Initialize paging for this device. */ static void -init_dev_paging () +init_dev_paging (void) { if (! pager_port_bucket) { |