summaryrefslogtreecommitdiffstats
path: root/src/plist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plist.c')
-rw-r--r--src/plist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plist.c b/src/plist.c
index 1fafd94..a3d3cb2 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -157,7 +157,7 @@ char compare_node_value(plist_type type, plist_data_t data, void *value, uint64_
157 res = !wcscmp(data->unicodeval, ((wchar_t *) value)); 157 res = !wcscmp(data->unicodeval, ((wchar_t *) value));
158 break; 158 break;
159 case PLIST_DATA: 159 case PLIST_DATA:
160 res = memcmp(data->buff,(char*) value, length ); 160 res = memcmp(data->buff, (char *) value, length);
161 break; 161 break;
162 case PLIST_ARRAY: 162 case PLIST_ARRAY:
163 case PLIST_DICT: 163 case PLIST_DICT: