summaryrefslogtreecommitdiffstats
path: root/src/afc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/afc.h')
-rw-r--r--src/afc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afc.h b/src/afc.h
index 9c9f12d..79078ec 100644
--- a/src/afc.h
+++ b/src/afc.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#include <glib.h>
23#include <stdint.h> 22#include <stdint.h>
23#include <pthread.h>
24 24
25#include "libimobiledevice/afc.h" 25#include "libimobiledevice/afc.h"
26 26
@@ -53,7 +53,7 @@ struct afc_client_private {
53 AFCPacket *afc_packet; 53 AFCPacket *afc_packet;
54 int file_handle; 54 int file_handle;
55 int lock; 55 int lock;
56 GMutex *mutex; 56 pthread_mutex_t mutex;
57 int own_connection; 57 int own_connection;
58}; 58};
59 59