summaryrefslogtreecommitdiffstats
path: root/core/membuffer.h
diff options
context:
space:
mode:
authorGravatar Berthold Stoeger <bstoeger@mail.tuwien.ac.at>2019-09-21 14:03:34 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-09-21 16:07:24 -0700
commitfe7c0b30856d1286ea9a521ca9fb01e4952b6275 (patch)
treea4a184235f62e782d960df320ae07825d615a474 /core/membuffer.h
parent9c48130d3717ca7e569bcf36fe753c90cc9dc3ea (diff)
downloadsubsurface-fe7c0b30856d1286ea9a521ca9fb01e4952b6275.tar.gz
Cleanup: make location argument to put_location() const
Since this is an output function, the pointed-to value is not modified. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/membuffer.h')
-rw-r--r--core/membuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/membuffer.h b/core/membuffer.h
index a5f7d023d..03c42a61d 100644
--- a/core/membuffer.h
+++ b/core/membuffer.h
@@ -111,7 +111,7 @@ extern void put_duration(struct membuffer *, duration_t, const char *, const cha
extern void put_pressure(struct membuffer *, pressure_t, const char *, const char *);
extern void put_salinity(struct membuffer *, int, const char *, const char *);
extern void put_degrees(struct membuffer *b, degrees_t value, const char *, const char *);
-extern void put_location(struct membuffer *b, location_t *, const char *, const char *);
+extern void put_location(struct membuffer *b, const location_t *, const char *, const char *);
#ifdef __cplusplus
}