progs/util: Byte swap individual members of struct _rawImageRec.

This commit is contained in:
Vinson Lee 2009-12-10 13:24:15 -08:00
parent 51f52edaf1
commit bc0509bba8
1 changed files with 6 additions and 1 deletions

View File

@ -117,7 +117,12 @@ static rawImageRec *RawImageOpen(const char *fileName)
fread(raw, 1, 12, raw->file);
if (swapFlag) {
ConvertShort(&raw->imagic, 6);
ConvertShort(&raw->imagic, 1);
ConvertShort(&raw->type, 1);
ConvertShort(&raw->dim, 1);
ConvertShort(&raw->sizeX, 1);
ConvertShort(&raw->sizeY, 1);
ConvertShort(&raw->sizeZ, 1);
}
raw->tmp = (unsigned char *)malloc(raw->sizeX*256);