summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2000-02-17 01:56:02 +0000
committerwtc%netscape.com <devnull@localhost>2000-02-17 01:56:02 +0000
commit9ba95da87e1dae1fd707f1e359eb11d4551cbeaa (patch)
treedbd67c028fc0240886d68f867dcfee2441292fd6
parentc037b8d7ae76c0d891b4fe92da5e2f623372a635 (diff)
downloadnspr-hg-9ba95da87e1dae1fd707f1e359eb11d4551cbeaa.tar.gz
Added \n at end of printf string. Thanks to Kurt J. Lidl <lidl@pix.net>
for the fix. (NSPRPUB_RELEASE_4_0_BRANCH)
-rw-r--r--pr/tests/op_excl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/tests/op_excl.c b/pr/tests/op_excl.c
index bfbd33d3..748552a4 100644
--- a/pr/tests/op_excl.c
+++ b/pr/tests/op_excl.c
@@ -118,7 +118,7 @@ PRIntn main(PRIntn argc, char *argv[])
*/
fd = PR_Open( NEW_FILENAME, PR_CREATE_FILE | PR_EXCL | PR_WRONLY, 0666 );
if ( NULL != fd ) {
- if (debug) fprintf( stderr, "Open exclusive. Expected failure, got success");
+ if (debug) fprintf( stderr, "Open exclusive. Expected failure, got success\n");
failed_already = 1;
PR_Close(fd);
}