X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os%2Fos-linux.h;h=ba53590d01a22611469c3733a3fbd25b1d449684;hp=695e9dad0fc04204b20f94901be68801581c3904;hb=dd3805d49995e59fdf61e2560c3fec5b7f5c71b6;hpb=7b5c648f6a5c05716e2f345c9d640965abda8761 diff --git a/os/os-linux.h b/os/os-linux.h index 695e9dad..ba53590d 100644 --- a/os/os-linux.h +++ b/os/os-linux.h @@ -315,11 +315,9 @@ static inline void make_pos_h_l(unsigned long *pos_h, unsigned long *pos_l, off_t offset) { #if BITS_PER_LONG == 64 -#warning 64 *pos_l = offset; *pos_h = 0; #else -#warning 32 *pos_l = offset & 0xffffffff; *pos_h = ((uint64_t) offset) >> 32; #endif