From 28628e5dcaf99bca0ef4e391167ceeebd3d8d713 Mon Sep 17 00:00:00 2001 From: "Dustin J. Mitchell" Date: Thu, 3 Oct 2024 18:32:13 -0400 Subject: [PATCH] Add newline in sync error message (#3603) --- src/TDB2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TDB2.cpp b/src/TDB2.cpp index 5b93ad4ac..fa6431613 100644 --- a/src/TDB2.cpp +++ b/src/TDB2.cpp @@ -226,7 +226,7 @@ void TDB2::get_changes(std::vector& changes) { void TDB2::revert() { rust::Vec undo_ops = replica()->get_undo_operations(); if (undo_ops.size() == 0) { - std::cout << "No operations to undo."; + std::cout << "No operations to undo.\n"; return; } if (confirm_revert(undo_ops)) {