diff options
| author | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2016-04-08 00:02:14 +0000 |
|---|---|---|
| committer | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2016-04-08 00:02:14 +0000 |
| commit | 3780b68b8f4c2006840d0b3446152350e14b41f4 (patch) | |
| tree | af69a7572e9891ae1beea78998ff4434c2617ced | |
| parent | 08f8f21b91e4a805ea71f48c1b04795a14da0f75 (diff) | |
| download | bcm5719-llvm-3780b68b8f4c2006840d0b3446152350e14b41f4.tar.gz bcm5719-llvm-3780b68b8f4c2006840d0b3446152350e14b41f4.zip | |
Fix formatting and wording of llvm-ranlib error message. NFC.
Patch by Douglas Yung!
Reviewed by Rafael Espindola
llvm-svn: 265753
| -rw-r--r-- | llvm/tools/llvm-ar/llvm-ar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-ar/llvm-ar.cpp b/llvm/tools/llvm-ar/llvm-ar.cpp index ef5fab68b94..e0bd7d21dbc 100644 --- a/llvm/tools/llvm-ar/llvm-ar.cpp +++ b/llvm/tools/llvm-ar/llvm-ar.cpp @@ -760,7 +760,7 @@ static int ar_main() { static int ranlib_main() { if (RestOfArgs.size() != 1) - fail(ToolName + "takes just one archive as argument"); + fail(ToolName + " takes just one archive as an argument"); ArchiveName = RestOfArgs[0]; return performOperation(CreateSymTab, nullptr); } |

