diff options
author | Martin Szulecki | 2010-03-16 02:47:27 +0100 |
---|---|---|
committer | Martin Szulecki | 2010-03-16 02:47:27 +0100 |
commit | 535af4c6a44c1dcf36d2da1ef0d33c69763bd186 (patch) | |
tree | ac8cfe6a71ed197584a60d2bc76be6b8fa5cca88 /src/notification_proxy.c | |
parent | dd48a2c0051be9e0f7a8ae99b035ee3c3a333dd4 (diff) | |
download | libimobiledevice-535af4c6a44c1dcf36d2da1ef0d33c69763bd186.tar.gz libimobiledevice-535af4c6a44c1dcf36d2da1ef0d33c69763bd186.tar.bz2 |
Rename the *_int to *_private for better semantic and fix public typedefs
This changes the typedef logic slightly for the public headers in order
for doxygen to correctly pickup and enable the client struct documentation.
Diffstat (limited to 'src/notification_proxy.c')
-rw-r--r-- | src/notification_proxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 41647c8..b82378a 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -110,7 +110,7 @@ np_error_t np_client_new(idevice_t device, uint16_t port, np_client_t *client) return NP_E_CONN_FAILED; } - np_client_t client_loc = (np_client_t) malloc(sizeof(struct np_client_int)); + np_client_t client_loc = (np_client_t) malloc(sizeof(struct np_client_private)); client_loc->parent = plistclient; client_loc->mutex = g_mutex_new(); |