aboutsummaryrefslogtreecommitdiffstats
path: root/core/dive.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2019-03-19 08:22:51 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-04-04 15:17:06 -0700
commitf1371adbb87dbfd37d5cc6619aac5b733df0d0e2 (patch)
tree51dc990eec60cea910765c595e37bf1d86060900 /core/dive.c
parent43fb4ef36b3f1b1a5c651f6342b475a9a6ed023a (diff)
downloadsubsurface-f1371adbb87dbfd37d5cc6619aac5b733df0d0e2.tar.gz
Misc: replace some FIXME comments
All these aren't actually things that need fixing, they are observations about the code. Given that LGTM.com reports FIXME comments as Alerts, let's change the ones that aren't about things that need fixing to something more harmless. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/dive.c')
-rw-r--r--core/dive.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/dive.c b/core/dive.c
index d6fba1714..e709073aa 100644
--- a/core/dive.c
+++ b/core/dive.c
@@ -1577,7 +1577,7 @@ static void simplify_dc_pressures(struct divecomputer *dc)
}
}
-/* FIXME! sensor -> cylinder mapping? */
+/* Do we need a sensor -> cylinder mapping? */
static void fixup_start_pressure(struct dive *dive, int idx, pressure_t p)
{
if (idx >= 0 && idx < MAX_CYLINDERS) {
@@ -2366,7 +2366,7 @@ static int match_cylinder(const cylinder_t *cyl, const struct dive *dive, unsign
if (different_manual_pressures(cyl, target))
continue;
- /* FIXME! Should we check sizes too? */
+ /* open question: Should we check sizes too? */
return i;
}
return -1;