summaryrefslogtreecommitdiff
path: root/pr/tests/stat.c
diff options
context:
space:
mode:
Diffstat (limited to 'pr/tests/stat.c')
-rw-r--r--pr/tests/stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pr/tests/stat.c b/pr/tests/stat.c
index c570056f..c3c869f2 100644
--- a/pr/tests/stat.c
+++ b/pr/tests/stat.c
@@ -4,7 +4,7 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/*
- * Program to test different ways to get file info; right now it
+ * Program to test different ways to get file info; right now it
* only works for solaris and OS/2.
*
*/
@@ -35,7 +35,7 @@ static void statPRStat(void)
{
PRFileInfo finfo;
PRInt32 index = count;
-
+
for (;index--;) {
PR_GetFileInfo(filename, &finfo);
}
@@ -45,7 +45,7 @@ static void statStat(void)
{
struct stat finfo;
PRInt32 index = count;
-
+
for (;index--;) {
stat(filename, &finfo);
}