clang complains about it:
argn = printllval(tcp, "%lld", argn);
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
sync_file_range2.c:43:2: note: Value stored to 'argn' is never read
* sync_file_range2.c (SYS_FUNC(sync_file_range2)): Do not assign
printllval result to argn for the second time.
printflags(sync_file_range_flags, tcp->u_arg[1],
"SYNC_FILE_RANGE_???");
argn = printllval(tcp, ", %lld, ", 2);
- argn = printllval(tcp, "%lld", argn);
+ printllval(tcp, "%lld", argn);
return RVAL_DECODED;
}