Skip to content

Commit

Permalink
Fix issue #750, file_observer prints wrong author
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllingstad committed Feb 23, 2024
1 parent bce2132 commit 6a7f5ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cosim/observer/file_observer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ class file_observer::slave_value_writer
<< std::setw(keyWidth_) << "name:" << md.name << std::endl
<< std::setw(keyWidth_) << "uuid:" << md.uuid << std::endl
<< std::setw(keyWidth_) << "description:" << md.description << std::endl
<< std::setw(keyWidth_) << "author:" << md.description << std::endl
<< std::setw(keyWidth_) << "author:" << md.author << std::endl
<< std::setw(keyWidth_) << "version:" << md.version << std::endl;

ss << "variables:" << std::endl;
Expand Down

0 comments on commit 6a7f5ff

Please sign in to comment.