summaryrefslogtreecommitdiff
path: root/core/multimedia/opieplayer/libmad/libmadplugin.cpp
authorsimon <simon>2002-04-30 06:23:23 (UTC)
committer simon <simon>2002-04-30 06:23:23 (UTC)
commit702c4b745d42d9ad5fdcede0a40d85ea1b0577a6 (patch) (side-by-side diff)
treefbe3d9080bd8e8c851464bf2b3e2c5c3c2383c97 /core/multimedia/opieplayer/libmad/libmadplugin.cpp
parent06be684b1ad4f17fdb5e9ea55560c1d6e4b4bf7d (diff)
downloadopie-702c4b745d42d9ad5fdcede0a40d85ea1b0577a6.zip
opie-702c4b745d42d9ad5fdcede0a40d85ea1b0577a6.tar.gz
opie-702c4b745d42d9ad5fdcede0a40d85ea1b0577a6.tar.bz2
- read(2) and write(2) are not part of the std namespace
Diffstat (limited to 'core/multimedia/opieplayer/libmad/libmadplugin.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/multimedia/opieplayer/libmad/libmadplugin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/multimedia/opieplayer/libmad/libmadplugin.cpp b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
index 319e0ff..eda5859 100644
--- a/core/multimedia/opieplayer/libmad/libmadplugin.cpp
+++ b/core/multimedia/opieplayer/libmad/libmadplugin.cpp
@@ -293,7 +293,7 @@ int LibMadPlugin::http_read_line(int tcp_sock, char *buf, int size) {
int offset = 0;
do {
- if (std::read(tcp_sock, buf + offset, 1) < 0)
+ if (::read(tcp_sock, buf + offset, 1) < 0)
return -1;
if (buf[offset] != '\r') /* Strip \r from answer */
offset++;
@@ -385,7 +385,7 @@ int LibMadPlugin::http_open(const QString& path ) {
if (QString(http_request).left(9) == "Location:") {
/* redirect */
- std::close(tcp_sock);
+ ::close(tcp_sock);
http_request[strlen(http_request) - 1] = '\0';
return http_open(&http_request[10]);
}