Commit 5b8ee16c authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

files: Fix id print format

Otherwise

| (00.013475)      1: Collect fdinfo pid=626 fd=4 id=0x           17008
Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 3736fcf9
...@@ -360,7 +360,7 @@ static int collect_fd(int pid, FdinfoEntry *e, struct rst_info *rst_info) ...@@ -360,7 +360,7 @@ static int collect_fd(int pid, FdinfoEntry *e, struct rst_info *rst_info)
struct fdinfo_list_entry *le, *new_le; struct fdinfo_list_entry *le, *new_le;
struct file_desc *fdesc; struct file_desc *fdesc;
pr_info("Collect fdinfo pid=%d fd=%d id=0x%16x\n", pr_info("Collect fdinfo pid=%d fd=%d id=%#x\n",
pid, e->fd, e->id); pid, e->fd, e->id);
new_le = shmalloc(sizeof(*new_le)); new_le = shmalloc(sizeof(*new_le));
......
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