summaryrefslogtreecommitdiffstats
path: root/dive.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-02 12:53:57 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-02 12:53:57 -0700
commit13ee1943ebd8303b38ae9f2549af0cdd16bcade4 (patch)
treeaa5ecb74c0b62704bb5423e5c398deaf33d7ce83 /dive.c
parent58fa613236d59a396ab83b4549484d16fcb47579 (diff)
downloadsubsurface-13ee1943ebd8303b38ae9f2549af0cdd16bcade4.tar.gz
Fix warning about ambiguous if / else nesting
Should have cleaned that up when committing the code. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r--dive.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/dive.c b/dive.c
index d2cda168d..4bf5f2742 100644
--- a/dive.c
+++ b/dive.c
@@ -1846,11 +1846,12 @@ struct divetag *taglist_get_tag(struct tag_entry *tag_list, const char *tag)
struct tag_entry *tmp;
tmp = tag_list->next;
while(tmp != NULL) {
- if (tmp->tag != NULL)
+ if (tmp->tag != NULL) {
if (strcmp(tmp->tag->name, tag) == 0)
return tmp->tag;
else
tmp = tmp->next;
+ }
}
return NULL;
}