diff options
author | Tim Segers <tsegers@pm.me> | 2022-10-21 00:56:41 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-10-21 11:12:03 +0200 |
commit | bdc09dfdde4e2c0330aea274ffe323eb15437115 (patch) | |
tree | 9a387d72a5f3c9b1a914bf38c4617e81425a6ddb | |
parent | 92dadbc1d4bacd5af4eb1b2e5bb3e6d2f0e954fa (diff) | |
download | opendeco-bdc09dfdde4e2c0330aea274ffe323eb15437115.tar.gz |
Make void explicit in print_gas_use declaration
-rw-r--r-- | src/opendeco.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/opendeco.c b/src/opendeco.c index 9ef08fa..8c3f52c 100644 --- a/src/opendeco.c +++ b/src/opendeco.c @@ -159,7 +159,7 @@ int register_gas_use(const double depth, const double time, const gas_t *gas, co return -1; } -void print_gas_use() +void print_gas_use(void) { static char gasbuf[12]; |