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 862a54c..f03e125 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -395,7 +395,7 @@ static plist_t plist_copy_node(node_t *node)
395 break; 395 break;
396 case PLIST_KEY: 396 case PLIST_KEY:
397 case PLIST_STRING: 397 case PLIST_STRING:
398 newdata->strval = strdup((char *) data->strval); 398 newdata->strval = strdup(data->strval);
399 break; 399 break;
400 case PLIST_ARRAY: 400 case PLIST_ARRAY:
401 if (data->hashtable) { 401 if (data->hashtable) {