Hi folks
fiemap.h uses
struct fiemap_extent fm_extents[0];
My compiler (HP NonStop) disallows that. The following would be allowed though:
struct fiemap_extent fm_extents[];
Bye, Jojo