summaryrefslogtreecommitdiffstats
path: root/src/if_py_both.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-02-06 19:57:20 +0100
committerBram Moolenaar <Bram@vim.org>2016-02-06 19:57:20 +0100
commit81e7a9c3fb37cad46c8f04a5ce871fb06819a371 (patch)
tree137d60842f9637b69037c043e9e5f6e6215d3402 /src/if_py_both.h
parent4f8b8faec31a934920a723053e8dcf47b6fac08c (diff)
patch 7.4.1270v7.4.1270
Problem: Warnings for missing values in switch. Solution: Change switch to if-else or add values.
Diffstat (limited to 'src/if_py_both.h')
-rw-r--r--src/if_py_both.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/if_py_both.h b/src/if_py_both.h
index e8a5f5de9c..6ae3fe7f6b 100644
--- a/src/if_py_both.h
+++ b/src/if_py_both.h
@@ -5831,11 +5831,10 @@ convert_dl(PyObject *obj, typval_T *tv,
}
/* As we are not using copy_tv which increments reference count we must
* do it ourself. */
- switch(tv->v_type)
- {
- case VAR_DICT: ++tv->vval.v_dict->dv_refcount; break;
- case VAR_LIST: ++tv->vval.v_list->lv_refcount; break;
- }
+ if (tv->v_type == VAR_DICT)
+ ++tv->vval.v_dict->dv_refcount;
+ else if (tv->v_type == VAR_LIST)
+ ++tv->vval.v_list->lv_refcount;
}
else
{