aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/opendeco.c
diff options
context:
space:
mode:
authorGravatar Tim Segers <tsegers@pm.me>2022-10-03 11:17:11 +0200
committerGravatar Tim Segers <tsegers@pm.me>2022-10-03 11:17:11 +0200
commite2ff193809aeb9cbc4cda896a48ecbefa4adb00c (patch)
treeaf384704f7bcf1d025183b58e04c14877f1d1f43 /opendeco.c
parent723d76f2912faeac891156ee061eb57fc2700f51 (diff)
downloadopendeco-e2ff193809aeb9cbc4cda896a48ecbefa4adb00c.tar.gz
Allow NULL instead of empty waypoint callback function
Diffstat (limited to 'opendeco.c')
-rw-r--r--opendeco.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/opendeco.c b/opendeco.c
index 2f82a48..59c9892 100644
--- a/opendeco.c
+++ b/opendeco.c
@@ -32,10 +32,6 @@ void print_segment_callback(const decostate_t *ds, const waypoint_t wp, segtype_
last_depth = wp.depth;
}
-void empty_callback(const decostate_t *ds, const waypoint_t wp, segtype_t type)
-{
-}
-
int main(int argc, const char *argv[])
{
setlocale(LC_ALL, "en_US.utf8");
@@ -68,7 +64,7 @@ int main(int argc, const char *argv[])
/* determine @+5 TTS */
decostate_t ds_ = ds;
add_segment_const(&ds_, depth, 5, gas);
- decoinfo_t di_plus5 = calc_deco(&ds_, depth, gas, deco_gasses, len(deco_gasses), &empty_callback);
+ decoinfo_t di_plus5 = calc_deco(&ds_, depth, gas, deco_gasses, len(deco_gasses), NULL);
/* print actual deco schedule */
decoinfo_t di = calc_deco(&ds, depth, gas, deco_gasses, len(deco_gasses), &print_segment_callback);