Commit a3524e91 by Serge Hallyn Committed by GitHub

Merge pull request #1297 from brauner/2016-11-13/fix_tmpfile_errno

conf: do not use %m format specifier
parents d3c57812 9e4e7b0d
......@@ -1958,7 +1958,7 @@ FILE *write_mount_file(struct lxc_list *mount)
file = tmpfile();
if (!file) {
ERROR("tmpfile error: %m");
ERROR("Could not create temporary file: %s.", strerror(errno));
return NULL;
}
......
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