summaryrefslogtreecommitdiff
path: root/ace/ACE.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-27 18:50:28 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-27 18:50:28 +0000
commit6078fed4746a85067ba046262ee4d9693e6541d1 (patch)
tree0f4439a040c508f6ff935efb5250d395db1d696b /ace/ACE.i
parent413ad9946ec794392df4ed597b51d15acb6f1af1 (diff)
downloadATCD-6078fed4746a85067ba046262ee4d9693e6541d1.tar.gz
(get_flags): added ACE_UNUSED_ARG (handle) if ACE_LACKS_FCNTL
Diffstat (limited to 'ace/ACE.i')
-rw-r--r--ace/ACE.i1
1 files changed, 1 insertions, 0 deletions
diff --git a/ace/ACE.i b/ace/ACE.i
index f865eac933e..0fbddf232b1 100644
--- a/ace/ACE.i
+++ b/ace/ACE.i
@@ -83,6 +83,7 @@ ACE::get_flags (ACE_HANDLE handle)
// ACE_OS::fcntl is not supported, e.g., on VxWorks. It
// would be better to store ACE's notion of the flags
// associated with the handle, but this works for now.
+ ACE_UNUSED_ARG (handle);
return 0;
#else
return ACE_OS::fcntl (handle, F_GETFL, 0);