mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-31 20:23:25 +00:00
Cleanup: make two functions in core/save-xml.c of static linkage
These functions were not used outside of the core/save-xml.c. Make them local. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
cefebc17bd
commit
e46e018e21
1 changed files with 2 additions and 2 deletions
|
@ -586,7 +586,7 @@ int save_dives(const char *filename)
|
|||
return save_dives_logic(filename, false, false);
|
||||
}
|
||||
|
||||
void save_dives_buffer(struct membuffer *b, const bool select_only, bool anonymize)
|
||||
static void save_dives_buffer(struct membuffer *b, const bool select_only, bool anonymize)
|
||||
{
|
||||
int i;
|
||||
struct dive *dive;
|
||||
|
@ -811,7 +811,7 @@ int export_dives_xslt(const char *filename, const bool selected, const int units
|
|||
return res;
|
||||
}
|
||||
|
||||
void save_dive_sites_buffer(struct membuffer *b, const bool select_only, bool anonymize)
|
||||
static void save_dive_sites_buffer(struct membuffer *b, const bool select_only, bool anonymize)
|
||||
{
|
||||
int i;
|
||||
put_format(b, "<divesites program='subsurface' version='%d'>\n", DATAFORMAT_VERSION);
|
||||
|
|
Loading…
Add table
Reference in a new issue