diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-14 08:34:11 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2005-01-14 08:34:11 +0000 |
commit | 44a2a60ff584bb81195b5355b35c505429b365a4 (patch) | |
tree | 400e2e5ee73b5a47abdf737d0e650a454dd747c8 /ace/FILE.cpp | |
parent | 10f43afe6f518486e36127f9ff7fec048ace9fca (diff) | |
download | ATCD-44a2a60ff584bb81195b5355b35c505429b365a4.tar.gz |
ChangeLogTag:Thu Jan 13 23:32:03 2005 Ossama Othman <ossama@dre.vanderbilt.edu>
Diffstat (limited to 'ace/FILE.cpp')
-rw-r--r-- | ace/FILE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/FILE.cpp b/ace/FILE.cpp index 2f15a3135b1..de7c294cc6e 100644 --- a/ace/FILE.cpp +++ b/ace/FILE.cpp @@ -108,7 +108,7 @@ ACE_FILE::get_local_addr (ACE_Addr &addr) const // Perform the downcast since <addr> had better be an // <ACE_FILE_Addr>. ACE_FILE_Addr *file_addr = - ACE_dynamic_cast (ACE_FILE_Addr *, &addr); + dynamic_cast<ACE_FILE_Addr *> (&addr); if (file_addr == 0) return -1; |