ntfscmp.c: Fix missing byteswap of little-endian attribute type value.

edge.strict_endians
Erik Larsson 2016-01-28 09:11:55 +01:00
parent 8aca3d4800
commit e37258bf01
1 changed files with 1 additions and 1 deletions

View File

@ -722,7 +722,7 @@ static void vprint_attribute(ATTR_TYPES atype, char *name)
if (!opt.verbose)
return;
printf("0x%x", atype);
printf("0x%x", le32_to_cpu(atype));
if (name)
printf(":%s", name);
printf(" ");