Commit 44b6c076 by Christian Brauner Committed by Stéphane Graber

conf: do not use %m format specifier

This is a GNU extension and some libcs might be missing it. Signed-off-by: 's avatarChristian Brauner <christian.brauner@canonical.com>
parent fb8b3a8e
...@@ -2514,7 +2514,7 @@ static int setup_mount_entries(const struct lxc_rootfs *rootfs, struct lxc_list ...@@ -2514,7 +2514,7 @@ static int setup_mount_entries(const struct lxc_rootfs *rootfs, struct lxc_list
file = tmpfile(); file = tmpfile();
if (!file) { if (!file) {
ERROR("tmpfile error: %m"); ERROR("Could not create temporary file: %s.", strerror(errno));
return -1; 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