Skip to content

Commit 3064440

Browse files
authored
Merge pull request #65 from timohl/master
Added missing comma in result types.
2 parents aaefd6f + f9cc293 commit 3064440

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/message/migfra/task.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ std::string Task_container::type(bool enable_result_format) const
7272
{
7373
std::array<std::string, 8> types;
7474
if (enable_result_format)
75-
types = {{"vm started", "vm stopped", "vm migrated", "node evacuated" "vm repinned", "vm suspended", "vm resumed", "quit"}};
75+
types = {{"vm started", "vm stopped", "vm migrated", "node evacuated", "vm repinned", "vm suspended", "vm resumed", "quit"}};
7676
else
7777
types = {{"start vm", "stop vm", "migrate vm", "evacuate node", "repin vm", "suspend vm", "resume vm", "quit"}};
7878
if (tasks.empty())

0 commit comments

Comments
 (0)