summaryrefslogtreecommitdiff
path: root/ace/ACE.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/ACE.cpp')
-rw-r--r--ace/ACE.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp
index 15f0b74f2cf..acd6a1d0163 100644
--- a/ace/ACE.cpp
+++ b/ace/ACE.cpp
@@ -2103,7 +2103,7 @@ ACE::count_interfaces (ACE_HANDLE handle,
const int MAX_IF = 50; // probably hard to put this many ifs in a unix box..
int num_ifs = MAX_IF; // HACK - set to an unreasonable number
struct ifconf ifcfg;
- struct ifreq *p_ifs = NULL;
+ struct ifreq *p_ifs = 0;
size_t ifreq_size = 0;
ifreq_size = num_ifs * sizeof (struct ifreq);