Commit 41b2b29e authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

files: Print resource IDs in hex format

We usually print resources IDs in hex format,
so fix the places where we don't (it confuses
otherwise).
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7d633755
......@@ -381,7 +381,7 @@ static int collect_fd(int pid, FdinfoEntry *e, struct rst_info *rst_info)
fdesc = find_file_desc(e);
if (fdesc == NULL) {
pr_err("No file for fd %d id %d\n", e->fd, e->id);
pr_err("No file for fd %d id %#x\n", e->fd, e->id);
return -1;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment