Properly terminate property_info lists

BListView's property_info list lacked termination, resulting in
garbage output at the and of 'hey getsuites'.

Use { 0 } everywhere for sake of consistency.

Thanks to waddlesplash for spotting the bug an providing the easy fix.
This commit is contained in:
Humdinger
2017-11-05 18:43:21 +01:00
parent f0665db479
commit 346d149694
10 changed files with 16 additions and 10 deletions
+2 -1
View File
@@ -61,7 +61,8 @@ static property_info sPropertyList[] = {
NULL, 0,
{ B_STRING_TYPE }
},
{}
{ 0 }
};