diff options
author | Christopher Faylor <me@cgf.cx> | 2004-10-25 15:49:36 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-10-25 15:49:36 +0000 |
commit | 4bfc614b42c52ed78f66abff92e9103a9ce549e1 (patch) | |
tree | f698a4d89c2508cb1763156b804ae5bf0c832602 /winsup/utils/mount.cc | |
parent | bc4ab9927687b3b2c67cce6e88ce6b5c15bd81c5 (diff) | |
download | newlib-4bfc614b42c52ed78f66abff92e9103a9ce549e1.zip newlib-4bfc614b42c52ed78f66abff92e9103a9ce549e1.tar.gz newlib-4bfc614b42c52ed78f66abff92e9103a9ce549e1.tar.bz2 |
fix whitespace, update some copyrights
Diffstat (limited to 'winsup/utils/mount.cc')
-rw-r--r-- | winsup/utils/mount.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/mount.cc b/winsup/utils/mount.cc index 5c84280..dcf4eb1 100644 --- a/winsup/utils/mount.cc +++ b/winsup/utils/mount.cc @@ -92,7 +92,7 @@ do_mount (const char *dev, const char *where, int flags) if (c == '/' || c == '\\') strcat (devtmp, "."); /* Use a curious property of Windows which allows the use of \.. even - on non-directory paths. */ + on non-directory paths. */ for (const char *p = dev; (p = strpbrk (p, "/\\")); p++) strcat (devtmp, "\\.."); strcat (devtmp, "\\"); |