diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-28 15:21:57 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-01-28 15:21:57 +0000 |
commit | a57162581a0fa03c8659100991fd7975c04de565 (patch) | |
tree | fa259eb2a8b400b4d66450a5d83ac11f3bdda1d1 /ace/Parse_Node.cpp | |
parent | 48993dde86e025aa4c0ac9a7278101308f67bb50 (diff) | |
download | ATCD-a57162581a0fa03c8659100991fd7975c04de565.tar.gz |
changed "sizeof char" to "sizeof (char)" because g++ and Sun C++ (properly) choked on it
Diffstat (limited to 'ace/Parse_Node.cpp')
-rw-r--r-- | ace/Parse_Node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Parse_Node.cpp b/ace/Parse_Node.cpp index 01571406795..900afd3a3a5 100644 --- a/ace/Parse_Node.cpp +++ b/ace/Parse_Node.cpp @@ -365,7 +365,7 @@ ACE_Location_Node::open_handle (void) // by searching the ACE_LD_SEARCH_PATH. ACE::ldfind (this->pathname (), dl_pathname, - (sizeof dl_pathname / sizeof char)); + (sizeof dl_pathname / sizeof (char))); this->handle (ACE_OS::dlopen (dl_pathname, RTLD_LAZY)); |