Cleanup: small coding style fixes

And addressing a cut and paste error in a comment.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-05-15 07:42:14 -07:00
parent 1bdf00b2b4
commit 2feedf46fa
8 changed files with 13 additions and 17 deletions

View file

@ -89,8 +89,8 @@ static int countPhotos(const struct dive *d)
pic_offset = picture->offset.seconds;
if ((pic_offset < -bufperiod) | (pic_offset > diveTotaltime+bufperiod)) {
icon_index |= 0x02; // If picture is before/after the dive
} // then set the appropriate bit ...
else {
// then set the appropriate bit ...
} else {
icon_index |= 0x01; // else set the bit for picture during the dive
}
}