summaryrefslogtreecommitdiffstats
path: root/divelist.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2011-11-13 15:51:34 -0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2011-11-13 15:51:34 -0200
commit4891fa812f04da1f46075433d28fa0f33145e125 (patch)
tree35beeea94d6749c033cac2287e5e9c62834539c5 /divelist.c
parentede70c03b0cff83f1d740204127fe594b8c378ec (diff)
downloadsubsurface-4891fa812f04da1f46075433d28fa0f33145e125.tar.gz
Fix minor coding standard issues introduced by my last commit
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'divelist.c')
-rw-r--r--divelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/divelist.c b/divelist.c
index bf853ec0e..81779f06d 100644
--- a/divelist.c
+++ b/divelist.c
@@ -337,7 +337,7 @@ static int calculate_sac(struct dive *dive)
void update_cylinder_related_info(struct dive *dive)
{
- if(dive != NULL) {
+ if (dive != NULL) {
dive->sac = calculate_sac(dive);
dive->otu = calculate_otu(dive);
}