diff options
author | Christopher Faylor <me@cgf.cx> | 2001-05-31 17:35:32 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-05-31 17:35:32 +0000 |
commit | fd047fb9d5d12bc180d02bdd55b751cd130737e1 (patch) | |
tree | 583971977812135ed8f7bc5a753320b2ecbc14c5 /winsup/cygwin | |
parent | ecfb6f11bcfe614f890d7f9f5e6633b2178c45a4 (diff) | |
download | newlib-fd047fb9d5d12bc180d02bdd55b751cd130737e1.zip newlib-fd047fb9d5d12bc180d02bdd55b751cd130737e1.tar.gz newlib-fd047fb9d5d12bc180d02bdd55b751cd130737e1.tar.bz2 |
Maintain 80 col line length.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r-- | winsup/cygwin/security.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/security.cc b/winsup/cygwin/security.cc index c618c07..82f1dd8 100644 --- a/winsup/cygwin/security.cc +++ b/winsup/cygwin/security.cc @@ -1525,7 +1525,8 @@ set_file_attribute (int use_ntsec, const char *file, if (!use_ntsec || !allow_ntsec) { - if (!NTWriteEA (file, ".UNIXATTR", (char *) &attribute, sizeof (attribute))) + if (!NTWriteEA (file, ".UNIXATTR", (char *) &attribute, + sizeof (attribute))) { __seterrno (); return -1; |