Commit dfcb2c48 authored by marko's avatar marko

branches/zip: row_merge_sort_linked_list(): Add a default: ut_error; branch

to the switch (row_merge_cmp(...)) to eliminate bogus warning about
uninitialized variable tmp.
parent 2ec8ec24
......@@ -648,6 +648,8 @@ row_merge_sort_linked_list(
list2_size = 0;
}
break;
default:
ut_error;
}
/* Append the element to the merged list */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment