diff options
author | Matt Colyer | 2009-05-19 07:38:06 -0700 |
---|---|---|
committer | Matt Colyer | 2009-05-19 07:38:06 -0700 |
commit | 435f5feb4b5c501db52743a170908687d3ba6f60 (patch) | |
tree | da3600e3d20babaccff2a3a24b94b0e49a40bd9c /swig | |
parent | b61667e9eae1a588815453ccdaa8721e228cc0b8 (diff) | |
download | libimobiledevice-435f5feb4b5c501db52743a170908687d3ba6f60.tar.gz libimobiledevice-435f5feb4b5c501db52743a170908687d3ba6f60.tar.bz2 |
Updated method python binding to new iphone_msync_new_client signature.
Diffstat (limited to 'swig')
-rw-r--r-- | swig/iphone.i | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/swig/iphone.i b/swig/iphone.i index ae2e97f..4e604e0 100644 --- a/swig/iphone.i +++ b/swig/iphone.i @@ -92,7 +92,7 @@ MobileSync* my_new_MobileSync(Lockdownd* lckd) { client = (MobileSync*) malloc(sizeof(MobileSync)); client->lckd = lckd; client->client = NULL; - iphone_msync_new_client ( lckd->dev->dev, 3432, port, &(client->client)); + iphone_msync_new_client ( lckd->dev->dev, port, &(client->client)); } return client; } |