summaryrefslogtreecommitdiffstats
path: root/src/AFC.c
diff options
context:
space:
mode:
authorGravatar Christophe Fergeau2008-12-29 12:35:51 +0100
committerGravatar Matt Colyer2009-01-02 09:55:08 -0800
commitd77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9 (patch)
tree6ef70292982a499e36d4e14c529436f889e42be1 /src/AFC.c
parent0efa3bc3a3519695f288211d720620cc0672f054 (diff)
downloadlibimobiledevice-d77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9.tar.gz
libimobiledevice-d77ecbe3fbd73418dd72e147a0ac2a89e62b1cd9.tar.bz2
Fix function prototypes
Add missing static, const, change function() to function(void)
Diffstat (limited to 'src/AFC.c')
-rw-r--r--src/AFC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AFC.c b/src/AFC.c
index 99c1849..b665f8e 100644
--- a/src/AFC.c
+++ b/src/AFC.c
@@ -557,7 +557,7 @@ iphone_error_t iphone_afc_mkdir(iphone_afc_client_t client, const char *dir)
557 * @return A pointer to an AFCFile struct containing the information received, 557 * @return A pointer to an AFCFile struct containing the information received,
558 * or NULL on failure. 558 * or NULL on failure.
559 */ 559 */
560iphone_afc_file_t afc_get_file_info(iphone_afc_client_t client, const char *path) 560static iphone_afc_file_t afc_get_file_info(iphone_afc_client_t client, const char *path)
561{ 561{
562 char *received, **list; 562 char *received, **list;
563 iphone_afc_file_t my_file; 563 iphone_afc_file_t my_file;