diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-10-25 08:25:23 +0100 |
---|---|---|
committer | bstoeger <32835590+bstoeger@users.noreply.github.com> | 2020-10-25 09:59:36 +0100 |
commit | 272b7b3e278b291e2df0f7bf290856f1daa950bc (patch) | |
tree | aab70c932665dda7531e96a1439a0d8912859cf5 /core | |
parent | a58eee9aa39b2d7829b3467e79f1120bdf7f7e70 (diff) | |
download | subsurface-272b7b3e278b291e2df0f7bf290856f1daa950bc.tar.gz |
cleanup: remove double const qualifier
The redundant qualifier was introduced in an erroneous rebase.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core')
-rw-r--r-- | core/parse-xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/parse-xml.c b/core/parse-xml.c index b50a7b582..aab25ffaf 100644 --- a/core/parse-xml.c +++ b/core/parse-xml.c @@ -1724,7 +1724,7 @@ static const char *preprocess_divelog_de(const char *buffer) int parse_xml_buffer(const char *url, const char *buffer, int size, struct dive_table *table, struct trip_table *trips, struct dive_site_table *sites, struct device_table *devices, struct filter_preset_table *filter_presets, - const const struct xml_params *params) + const struct xml_params *params) { UNUSED(size); xmlDoc *doc; |