summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1998-12-10 19:40:48 +0000
committerwtc%netscape.com <devnull@localhost>1998-12-10 19:40:48 +0000
commite117e88d0bce3b523f22f44c81a861c81edbbd4e (patch)
treed2ab5291113078b5e71cc771573670531ff3a3db
parenta9f180df790a4c3d25eba00514c82ab9e808ebff (diff)
downloadnspr-hg-e117e88d0bce3b523f22f44c81a861c81edbbd4e.tar.gz
Adjusted comments and white space.
-rw-r--r--pr/src/md/mac/macio.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/pr/src/md/mac/macio.c b/pr/src/md/mac/macio.c
index 25a7d93a..ab1e8697 100644
--- a/pr/src/md/mac/macio.c
+++ b/pr/src/md/mac/macio.c
@@ -329,7 +329,7 @@ ErrorExit:
/* File I/O functions called by PR I/O routines */
PRInt32 _MD_Open(const char *path, PRIntn flags, int mode)
{
-// Macintosh doesnŐt really have mode bits, just drop them
+// Macintosh doesn't really have mode bits, just drop them
#pragma unused (mode)
OSErr err;
@@ -351,7 +351,6 @@ PRInt32 _MD_Open(const char *path, PRIntn flags, int mode)
hpb.ioParam.ioVRefNum = 0;
hpb.ioParam.ioVersNum = 0;
-
if (flags & PR_RDWR)
perm = fsRdWrPerm;
else if (flags & PR_WRONLY)
@@ -360,7 +359,7 @@ PRInt32 _MD_Open(const char *path, PRIntn flags, int mode)
perm = fsRdPerm;
hpb.ioParam.ioPermssn = perm;
- hpb.ioParam.ioMisc = NULL;
+ hpb.ioParam.ioMisc = NULL;
open:
err = PBHOpenSync(&hpb);