aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index d30428e..dad4480 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -203,7 +203,8 @@ std::ostream& operator<<(std::ostream& o, const generator<openxc::diagnostic_mes
<< v.line_prefix_ << "\t" << gen(v.v_.frequency()) << ",\n"
<< v.line_prefix_ << "\t" << (v.v_.decoder().size() ? v.v_.decoder() : "nullptr") << ",\n"
<< v.line_prefix_ << "\t" << (v.v_.callback().size() ? v.v_.callback() : "nullptr") << ",\n"
- << v.line_prefix_ << "\t" << "true" << "\n"
+ << v.line_prefix_ << "\t" << "true" << ",\n"
+ << v.line_prefix_ << "\t" << "false" << "\n"
<< v.line_prefix_ << "})}\n";
return o;
}