switchroot: Suppress compiler warning for asprintf
We're not going to run OOM here, if we do, we're totally screwed anyways.
This commit is contained in:
parent
ff3e83a5e1
commit
c563d07cb6
|
|
@ -247,8 +247,8 @@ main(int argc, char *argv[])
|
|||
if (ostree_target_path[len-1] == '/')
|
||||
ostree_target_path[len-1] = '\0';
|
||||
fprintf (stderr, "Resolved OSTree target to: %s\n", ostree_target_path);
|
||||
asprintf (&deploy_path, "%s/ostree/deploy/%s/%s", root_mountpoint,
|
||||
ostree_osname, ostree_target_path);
|
||||
(void) asprintf (&deploy_path, "%s/ostree/deploy/%s/%s", root_mountpoint,
|
||||
ostree_osname, ostree_target_path);
|
||||
|
||||
/* Make deploy_path a bind mount, so we can move it later */
|
||||
if (mount (deploy_path, deploy_path, NULL, MS_BIND, NULL) < 0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue