summaryrefslogtreecommitdiff
path: root/lib/Handle.cc
diff options
context:
space:
mode:
authorpixel <pixel>2002-12-23 20:36:14 +0000
committerpixel <pixel>2002-12-23 20:36:14 +0000
commit9ba3c9416d45e5c53c8e7f83638d3bfba22520d4 (patch)
tree72b895b2dbef11bac8a73e2a680736f6a97e063b /lib/Handle.cc
parentb4e157b093d8650eac9fbc3782e59868e2453787 (diff)
Mmhhh.... vc6 sux at casting...
Diffstat (limited to 'lib/Handle.cc')
-rw-r--r--lib/Handle.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Handle.cc b/lib/Handle.cc
index 1941254..50e7bee 100644
--- a/lib/Handle.cc
+++ b/lib/Handle.cc
@@ -39,9 +39,11 @@ int Handle::GetHandle() const {
return h;
}
-ssize_t Handle::write(const void *buf, size_t count) throw (GeneralException) {
+ssize_t Handle::write(const void *cbuf, size_t count) throw (GeneralException) {
ssize_t r, tr = 0;
bool done, full = false;
+ const char * buf = (const char *)cbuf;
+
do {
done = true;
@@ -75,7 +77,7 @@ ssize_t Handle::write(const void *buf, size_t count) throw (GeneralException) {
return r;
}
full = done = false;
- ((char *)buf) += r;
+ buf += r;
tr += r;
}
} while (!done);