summaryrefslogtreecommitdiffstats
path: root/divelist.c
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-11-17 18:38:46 -0200
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-11-17 18:38:46 -0200
commit160745c545c05f4b25a3c042aa770e8213b763a2 (patch)
tree2911001a5099cf550165d9477e598dacb6353292 /divelist.c
parentc486a9ee81de77faba90b5aa0b2e63eb11ec47f8 (diff)
parent4cff1f5b90217365d13ab2e2d5ff09b35590aab3 (diff)
downloadsubsurface-160745c545c05f4b25a3c042aa770e8213b763a2.tar.gz
Merge branch 'sacplot' of git://github.com/dirkhh/subsurface
* 'sacplot' of git://github.com/dirkhh/subsurface: Color pressure plot according to current SAC rate Fix minor coding standard issues introduced by my last commit
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 93ea34f63..60ad16a7f 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);
}