diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-03-19 08:22:51 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-03-19 09:56:48 -0700 |
commit | 8e43d2b8d2023f06e79b1a5b5bfc28bd79294925 (patch) | |
tree | 9a76f381cad875528b0bf0bb7c96fbc62fe1efef /core/dive.c | |
parent | c7bb67c5bef01772a9e52dddccfa5f02d91393ff (diff) | |
download | subsurface-8e43d2b8d2023f06e79b1a5b5bfc28bd79294925.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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/dive.c b/core/dive.c index 0d100f37c..c73453a04 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; |