summaryrefslogtreecommitdiffstats
path: root/core/parse.c
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@libreoffice.org>2018-05-22 09:07:42 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2018-05-24 08:34:14 -0700
commit061be82e31f0d08804cd5d0edc2244540200fcea (patch)
tree94f0e5da65bab561200f9be245e25c507d6be850 /core/parse.c
parent6e253fa04f81be6fb26ff59cd5be39c85bfe3d19 (diff)
downloadsubsurface-061be82e31f0d08804cd5d0edc2244540200fcea.tar.gz
core: replace (void) with UNUSED(x) and include ssrf.h
Unused parameters in C are "silenced" by adding UNUSED(x) Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/parse.c')
-rw-r--r--core/parse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/parse.c b/core/parse.c
index d6ec39a7a..68e409b94 100644
--- a/core/parse.c
+++ b/core/parse.c
@@ -1,3 +1,4 @@
+#include "ssrf.h"
#include <stdio.h>
#include <assert.h>
#include <stdarg.h>
@@ -195,7 +196,7 @@ bool is_dive(void)
void reset_dc_info(struct divecomputer *dc)
{
/* WARN: reset dc info does't touch the dc? */
- (void) dc;
+ UNUSED(dc);
lastcylinderindex = 0;
}