diff options
-rw-r--r-- | mesonbuild/templates/cudatemplates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/templates/cudatemplates.py b/mesonbuild/templates/cudatemplates.py index 919db21..bbb1a3e 100644 --- a/mesonbuild/templates/cudatemplates.py +++ b/mesonbuild/templates/cudatemplates.py @@ -21,7 +21,7 @@ hello_cuda_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"; |