Rename structures.

This commit is contained in:
2020-03-01 19:55:22 +00:00
parent 5105a6f4e7
commit a03a177f44
6 changed files with 24 additions and 24 deletions

View File

@@ -70,9 +70,9 @@ void* open(const char* filepath)
}
fseek(ctx->imageStream, 0, SEEK_SET);
readBytes = fread(&ctx->header, sizeof(DicHeader), 1, ctx->imageStream);
readBytes = fread(&ctx->header, sizeof(AaruHeader), 1, ctx->imageStream);
if(readBytes != sizeof(DicHeader))
if(readBytes != sizeof(AaruHeader))
{
free(ctx);
errno = AARUF_ERROR_FILE_TOO_SMALL;