diff options
| author | Jack Nagel | 2015-01-13 10:22:01 -0500 |
|---|---|---|
| committer | Jack Nagel | 2015-01-13 10:22:01 -0500 |
| commit | bd189b67a22c0002fd06411ad6e5ce1e756101c4 (patch) | |
| tree | cf1dd5ab4f319f9e929bca26c70bc4ca617ef8e1 | |
| parent | 17215f16d8c4d72546ce3f738e16836c47f6d0df (diff) | |
| download | homebrew-bd189b67a22c0002fd06411ad6e5ce1e756101c4.tar.bz2 | |
open-mpi: fix test
Sorry :(
| -rw-r--r-- | Library/Formula/open-mpi.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/open-mpi.rb b/Library/Formula/open-mpi.rb index be341746c..0a7081eef 100644 --- a/Library/Formula/open-mpi.rb +++ b/Library/Formula/open-mpi.rb @@ -63,7 +63,7 @@ class OpenMpi < Formula MPI_Comm_size(MPI_COMM_WORLD, &size); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Get_processor_name(name, &nameLen); - printf("[%d/%d] Hello, world! My name is %s.\n", rank, size, name); + printf("[%d/%d] Hello, world! My name is %s.\\n", rank, size, name); MPI_Finalize(); return 0; } |
