diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-24 19:05:56 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-04-24 19:05:56 -0700 |
commit | 99708bb40e2d0f0e1ddfa6ec56a192e3878d511b (patch) | |
tree | 4f3042f829566b3cf5946fca01d9e4534942e670 /info.c | |
parent | 698892329a3f981ff762300427bb43f34b553baf (diff) | |
download | subsurface-99708bb40e2d0f0e1ddfa6ec56a192e3878d511b.tar.gz |
Make sure to update dive info when it is edited
We used to not properly update the dive info until we switched to
another dive when we edited it. This should fix it.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'info.c')
-rw-r--r-- | info.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -352,7 +352,7 @@ static void save_dive_info_changes(struct dive *dive, struct dive_info *info) if (changed) { mark_divelist_changed(TRUE); - flush_divelist(dive); + update_dive(dive); } } |