Commit 1d6b1976 by Daniel Lezcano Committed by Daniel Lezcano

fix mount entry typo

Added missing carriage-return when adding a new entry. Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent f6cc1de1
...@@ -611,7 +611,7 @@ static int setup_mount_entries(struct lxc_list *mount) ...@@ -611,7 +611,7 @@ static int setup_mount_entries(struct lxc_list *mount)
lxc_list_for_each(iterator, mount) { lxc_list_for_each(iterator, mount) {
mount_entry = iterator->elem; mount_entry = iterator->elem;
fprintf(file, "%s", mount_entry); fprintf(file, "%s\n", mount_entry);
} }
rewind(file); rewind(file);
......
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