aboutsummaryrefslogtreecommitdiffstats
path: root/modules/es_egd
diff options
context:
space:
mode:
authorlloyd <[email protected]>2007-10-19 18:11:06 +0000
committerlloyd <[email protected]>2007-10-19 18:11:06 +0000
commit807b84081f91f1f0cd5255198ce31745d410c28c (patch)
tree20574311297aee66974abce1fa138b0116aff5fc /modules/es_egd
parent11d6a889becbb8fe6c2d78dd60b9673b791c17b9 (diff)
Remove several uses of old style C casts in favor of C++98's static_cast and
reinterpret_cast
Diffstat (limited to 'modules/es_egd')
-rw-r--r--modules/es_egd/es_egd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/es_egd/es_egd.cpp b/modules/es_egd/es_egd.cpp
index 0ff19a90b..2c377b387 100644
--- a/modules/es_egd/es_egd.cpp
+++ b/modules/es_egd/es_egd.cpp
@@ -56,7 +56,7 @@ u32bit EGD_EntropySource::do_poll(byte output[], u32bit length,
if(fd == -1) return 0;
int len = sizeof(addr.sun_family) + std::strlen(addr.sun_path) + 1;
- if(connect(fd, (struct sockaddr*)&addr, len))
+ if(connect(fd, reinterpret_cast<struct sockaddr*>(&addr), len))
{ close(fd); return 0; }
byte buffer[2];