diff options
author | Martin Szulecki | 2014-03-20 23:00:20 +0100 |
---|---|---|
committer | Martin Szulecki | 2014-03-20 23:00:20 +0100 |
commit | 88ce6113593158944630435678e689bf155d9a03 (patch) | |
tree | 0757287665b7e9c7263d77fd269b0777e8228d25 /dev | |
parent | a34a537d1408f8692daeadd5e1f5859ff13a3473 (diff) | |
download | libimobiledevice-88ce6113593158944630435678e689bf155d9a03.tar.gz libimobiledevice-88ce6113593158944630435678e689bf155d9a03.tar.bz2 |
Bump dependency to libplist 1.11 and remove use of "plist_dict_insert_item()"
Diffstat (limited to 'dev')
-rw-r--r-- | dev/ideviceheartbeat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/ideviceheartbeat.c b/dev/ideviceheartbeat.c index d108766..fe2cdf3 100644 --- a/dev/ideviceheartbeat.c +++ b/dev/ideviceheartbeat.c @@ -136,7 +136,7 @@ int main(int argc, char *argv[]) /* answer with a "pong" message */ message = plist_new_dict(); - plist_dict_insert_item(message, "Command", plist_new_string("Polo")); + plist_dict_set_item(message, "Command", plist_new_string("Polo")); heartbeat_send(heartbeat, message); printf("< polo\n"); |