summaryrefslogtreecommitdiff
path: root/nsprpub/pr/tests/stdio.c
diff options
context:
space:
mode:
Diffstat (limited to 'nsprpub/pr/tests/stdio.c')
-rw-r--r--nsprpub/pr/tests/stdio.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/nsprpub/pr/tests/stdio.c b/nsprpub/pr/tests/stdio.c
index 8e2b856088..d8a12389b2 100644
--- a/nsprpub/pr/tests/stdio.c
+++ b/nsprpub/pr/tests/stdio.c
@@ -8,9 +8,9 @@
* Description: testing the "special" fds
* Modification History:
* 20-May-1997 AGarcia - Replace Test succeeded status with PASS. This is used by the
- * regress tool parsing code.
+ * regress tool parsing code.
** 04-June-97 AGarcia removed the Test_Result function. Regress tool has been updated to
-** recognize the return code from tha main program.
+** recognize the return code from tha main program.
*/
@@ -29,12 +29,12 @@ static PRIntn PR_CALLBACK stdio(PRIntn argc, char **argv)
PRFileDesc *err = PR_GetSpecialFD(PR_StandardError);
rv = PR_Write(
- out, "This to standard out\n",
- strlen("This to standard out\n"));
+ out, "This to standard out\n",
+ strlen("This to standard out\n"));
PR_ASSERT((PRInt32)strlen("This to standard out\n") == rv);
rv = PR_Write(
- err, "This to standard err\n",
- strlen("This to standard err\n"));
+ err, "This to standard err\n",
+ strlen("This to standard err\n"));
PR_ASSERT((PRInt32)strlen("This to standard err\n") == rv);
return 0;