Skip to content
Snippets Groups Projects
Commit c7deb8cd authored by Richard Cordovano's avatar Richard Cordovano
Browse files

Merge pull request #597 from eugene7646/build_error

Fixed a build error
parents f0c90285 72a7d232
No related branches found
No related tags found
No related merge requests found
...@@ -390,6 +390,7 @@ tsk_img_open_utf8(int num_img, ...@@ -390,6 +390,7 @@ tsk_img_open_utf8(int num_img,
TSK_IMG_INFO * TSK_IMG_INFO *
tsk_img_open_external( tsk_img_open_external(
void* ext_img_info, void* ext_img_info,
TSK_IMG_INFO *img_info,
TSK_OFF_T size, TSK_OFF_T size,
unsigned int sector_size, unsigned int sector_size,
ssize_t(*read) (TSK_IMG_INFO * img, TSK_OFF_T off, char *buf, size_t len), ssize_t(*read) (TSK_IMG_INFO * img, TSK_OFF_T off, char *buf, size_t len),
...@@ -443,7 +444,7 @@ tsk_img_open_external( ...@@ -443,7 +444,7 @@ tsk_img_open_external(
} }
// set up the TSK_IMG_INFO members // set up the TSK_IMG_INFO members
TSK_IMG_INFO *img_info = (TSK_IMG_INFO *) ext_img_info; img_info = (TSK_IMG_INFO *) ext_img_info;
img_info->tag = TSK_IMG_INFO_TAG; img_info->tag = TSK_IMG_INFO_TAG;
img_info->itype = TSK_IMG_TYPE_EXTERNAL; img_info->itype = TSK_IMG_TYPE_EXTERNAL;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment