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>
This commit is contained in:
Dirk Hohndel 2019-03-19 08:22:51 -07:00
parent c7bb67c5be
commit 8e43d2b8d2
4 changed files with 8 additions and 8 deletions

View file

@ -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;