Sigh, the QA scripts look for the word 'failed', but it's common that we

can't open the shared library and isn't a real failure, so change the wording
This commit is contained in:
relyea%netscape.com 2003-02-08 01:52:37 +00:00
Родитель 9e45c085d5
Коммит ab77a6c23c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -34,7 +34,7 @@
/* /*
* Test program to mangle 1 bit in a binary * Test program to mangle 1 bit in a binary
* *
* $Id: mangle.c,v 1.4 2003/02/07 23:05:07 relyea%netscape.com Exp $ * $Id: mangle.c,v 1.5 2003/02/08 01:52:37 relyea%netscape.com Exp $
*/ */
#include "nspr.h" #include "nspr.h"
@ -118,7 +118,7 @@ main (int argc, char **argv)
fd = PR_OpenFile(libFile,PR_RDWR,0666); fd = PR_OpenFile(libFile,PR_RDWR,0666);
if (fd == NULL ) { if (fd == NULL ) {
/* lperror(libFile); */ /* lperror(libFile); */
PR_fprintf(pr_stderr,"Open %s failed\n",libFile); PR_fprintf(pr_stderr,"Couldn't Open %s\n",libFile);
goto loser; goto loser;
} }