summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAron Budea <aron.budea@collabora.com>2018-02-21 14:49:11 +0100
committerMichael Stahl <mstahl@redhat.com>2018-02-22 14:54:54 +0100
commitc8bb752d21e25a1ba9b61e1197002e6d8c1746a5 (patch)
tree315b73748777529279053b9da4307cba012b9313 /include
parent9187fec31abaae8890b06d36b5887c1012c1384a (diff)
tdf#115383: revert mixup of E_ROFS and E_SPIPE in file.hxx
Regression from a9739f2dec197793fa9400dd95be49494dc85264 Change-Id: I1b55b0201888a63bd2439be8c0421f450d609018 Reviewed-on: https://gerrit.libreoffice.org/50105 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com> Reviewed-on: https://gerrit.libreoffice.org/50171 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/osl/file.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osl/file.hxx b/include/osl/file.hxx
index b005a31b5e76..96c155a18e1e 100644
--- a/include/osl/file.hxx
+++ b/include/osl/file.hxx
@@ -80,8 +80,8 @@ public:
E_NOTTY = osl_File_E_NOTTY, //< inappropriate I/O control operation
E_FBIG = osl_File_E_FBIG, //< file too large
E_NOSPC = osl_File_E_NOSPC, //< no space left on device, write failed
- E_SPIPE = osl_File_E_ROFS, //< invalid seek operation (such as on pipe)
- E_ROFS = osl_File_E_SPIPE, //< illegal modification to read-only filesystem
+ E_SPIPE = osl_File_E_SPIPE, //< invalid seek operation (such as on pipe)
+ E_ROFS = osl_File_E_ROFS, //< illegal modification to read-only filesystem
E_MLINK = osl_File_E_MLINK, //< too many links to file
E_PIPE = osl_File_E_PIPE, //< broken pipe; no process reading from other end of pipe
E_DOM = osl_File_E_DOM, //< domain error (mathematical error)