diff options
author | Nikias Bassen | 2013-10-02 19:29:04 +0200 |
---|---|---|
committer | Nikias Bassen | 2013-10-02 19:29:04 +0200 |
commit | b040d1b5f4732a431c1d900b55d6bbd3684f6c74 (patch) | |
tree | 90707c0dfebcddb763ceb322f61b2a3ca4a95abd /src/ipsw.h | |
parent | 4f6e61eb9ec0af09a85bcbd83e6897782eb669aa (diff) | |
download | idevicerestore-b040d1b5f4732a431c1d900b55d6bbd3684f6c74.tar.gz idevicerestore-b040d1b5f4732a431c1d900b55d6bbd3684f6c74.tar.bz2 |
ipsw: change buffers to use type unsigned char*
Diffstat (limited to 'src/ipsw.h')
-rw-r--r-- | src/ipsw.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -41,7 +41,7 @@ typedef struct { int ipsw_get_file_size(const char* ipsw, const char* infile, off_t* size); int ipsw_extract_to_file(const char* ipsw, const char* infile, const char* outfile); -int ipsw_extract_to_memory(const char* ipsw, const char* infile, char** pbuffer, uint32_t* psize); +int ipsw_extract_to_memory(const char* ipsw, const char* infile, unsigned char** pbuffer, unsigned int* psize); int ipsw_extract_build_manifest(const char* ipsw, plist_t* buildmanifest, int *tss_enabled); int ipsw_extract_restore_plist(const char* ipsw, plist_t* restore_plist); void ipsw_free_file(ipsw_file* file); |