lxc / lxcfs

FUSE filesystem for LXC
https://linuxcontainers.org/lxcfs
Other
1.04k stars 251 forks source link

cpuview: pass a correct argument to lxcfs_debug #613

Closed mihalicyn closed 1 year ago

mihalicyn commented 1 year ago

struct cg_proc_stat *cur; ... lxcfs_debug("Removing stat node for %s\n", cur);

should be:

lxcfs_debug("Removing stat node for %s\n", cur->cg);

Only reproducible when DEBUG macro is defined.