summaryrefslogtreecommitdiffstats
path: root/src/img3.c
diff options
context:
space:
mode:
authorGravatar Joshua Hill2010-05-22 14:53:05 -0400
committerGravatar Joshua Hill2010-05-22 14:53:05 -0400
commitead23ad2b1bcfff151fd7f476fa32f949d509c6a (patch)
treed79ef7d0aacae798f797b12dedaf0dcfb31cb2ea /src/img3.c
parenta184cda744006d4a597ff5a23b67b635dd28c222 (diff)
downloadidevicerestore-ead23ad2b1bcfff151fd7f476fa32f949d509c6a.tar.gz
idevicerestore-ead23ad2b1bcfff151fd7f476fa32f949d509c6a.tar.bz2
Fixed stupid stupid stupid bug
Diffstat (limited to 'src/img3.c')
-rw-r--r--src/img3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/img3.c b/src/img3.c
index 8a536e5..4daa6b6 100644
--- a/src/img3.c
+++ b/src/img3.c
@@ -25,7 +25,7 @@
#include "img3.h"
#include "idevicerestore.h"
-img3_file* image3_parse_file(unsigned char* data, unsigned int size) {
+img3_file* img3_parse_file(unsigned char* data, unsigned int size) {
img3_header* header = (img3_header*) data;
if(header->imageType != kImg3Container) {
error("ERROR: Invalid IMG3 file\n");
@@ -34,7 +34,7 @@ img3_file* image3_parse_file(unsigned char* data, unsigned int size) {
return NULL;
}
-void image3_free(img3_file* file) {
+void img3_free(img3_file* file) {
if(file != NULL) {
free(file);
}