diff --git a/src/ewf.c b/src/ewf.c index 886fa4c..6163ae9 100644 --- a/src/ewf.c +++ b/src/ewf.c @@ -516,13 +516,6 @@ static int fewf_pread(disk_t *disk, void *buffer, const unsigned int count, cons count, offset, NULL ); -#else - taille = libewf_handle_read_random( - data->handle, - buffer, - count, - offset, - NULL ); #endif #else taille=libewf_read_random(data->handle, buffer, count, offset); @@ -556,13 +549,6 @@ static int fewf_pwrite(disk_t *disk, const void *buffer, const unsigned int coun count, offset, NULL ); -#else - taille = libewf_handle_write_random( - data->handle, - buffer, - count, - offset, - NULL ); #endif #else taille=libewf_write_random(data->handle, buffer, count, offset);