From b31f16af48db08d22f6702888f2ea87a116a19b0 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Tue, 7 Jan 2014 17:18:05 +0100 Subject: [PATCH] Added final newline to sourcery output. --- src/sourcery.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sourcery.cpp b/src/sourcery.cpp index 24ba451f..e3db80ef 100644 --- a/src/sourcery.cpp +++ b/src/sourcery.cpp @@ -38,6 +38,6 @@ int main(int argc, char* argv[]){ i = 0; } } - std::cout << "\";" << std::endl << "unsigned int " << argv[2] << "_len = " << i + total << ";"; + std::cout << "\";" << std::endl << "unsigned int " << argv[2] << "_len = " << i + total << ";" << std::endl; return 0; }