diff options
author | Tim Segers <tsegers@pm.me> | 2022-10-22 21:50:20 +0200 |
---|---|---|
committer | Tim Segers <tsegers@pm.me> | 2022-10-22 21:50:20 +0200 |
commit | 5990826a3b7fd661b234c53d0739f68eb138b3cb (patch) | |
tree | d6dcd45b4bb347223a807daddcdb10b71a74b87f /src/output.h | |
parent | 2e54be8428e075663c632645382c6588bdec2e84 (diff) | |
download | opendeco-5990826a3b7fd661b234c53d0739f68eb138b3cb.tar.gz |
Remove const qualifier from non-pointer parameters
Diffstat (limited to 'src/output.h')
-rw-r--r-- | src/output.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output.h b/src/output.h index 8e602a6..d6d00f3 100644 --- a/src/output.h +++ b/src/output.h @@ -15,10 +15,10 @@ /* functions */ void print_planhead(void); -void print_planline(const wchar_t sign, const double depth, const double time, const double runtime, const gas_t *gas); +void print_planline(wchar_t sign, double depth, double time, double runtime, const gas_t *gas); void print_planfoot(const decostate_t *ds); void scan_gas(gas_t *gas, char *str); -void format_gas(char *buf, const size_t buflen, const gas_t *gas); +void format_gas(char *buf, size_t buflen, const gas_t *gas); #endif /* end of include guard: OUTPUT_H */ |