diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2011-11-13 15:51:34 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2011-11-13 15:51:34 -0200 |
commit | 4891fa812f04da1f46075433d28fa0f33145e125 (patch) | |
tree | 35beeea94d6749c033cac2287e5e9c62834539c5 /divelist.c | |
parent | ede70c03b0cff83f1d740204127fe594b8c378ec (diff) | |
download | subsurface-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.c | 2 |
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); } |