aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/templates/cpptemplates.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/templates/cpptemplates.py')
-rw-r--r--mesonbuild/templates/cpptemplates.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/templates/cpptemplates.py b/mesonbuild/templates/cpptemplates.py
index 1bfa2ae..cdfbbf8 100644
--- a/mesonbuild/templates/cpptemplates.py
+++ b/mesonbuild/templates/cpptemplates.py
@@ -16,7 +16,7 @@ hello_cpp_template = '''#include <iostream>
int main(int argc, char **argv) {{
if (argc != 1) {{
- std::cout << argv[0] << "takes no arguments.\\n";
+ std::cout << argv[0] << " takes no arguments.\\n";
return 1;
}}
std::cout << "This is project " << PROJECT_NAME << ".\\n";