Cygwin: /proc/<PID>/status: fix format specifier
The format specifier used for the signal masks is incorrectly assuming 32 bit values. Fix it. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
aec053c60c
commit
25937aa1d0
|
@ -1257,9 +1257,9 @@ format_process_status (void *data, char *&destbuf)
|
|||
"VmStk:\t%8lu kB\n"
|
||||
"VmExe:\t%8lu kB\n"
|
||||
"VmLib:\t%8lu kB\n"
|
||||
"SigPnd:\t%016x\n"
|
||||
"SigBlk:\t%016x\n"
|
||||
"SigIgn:\t%016x\n",
|
||||
"SigPnd:\t%016lx\n"
|
||||
"SigBlk:\t%016lx\n"
|
||||
"SigIgn:\t%016lx\n",
|
||||
cmd,
|
||||
state, state_str,
|
||||
p->pgid,
|
||||
|
|
Loading…
Reference in New Issue