address compiler warnings
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10101 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -55,7 +55,7 @@ using namespace std;
|
|||||||
|
|
||||||
|
|
||||||
LpsClient::LpsClient(const char *host)
|
LpsClient::LpsClient(const char *host)
|
||||||
: __host(host), __sock(NULL), connected(false)
|
: connected(false), __host(host), __sock(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
/*-----------------------------------------------------------------*/
|
/*-----------------------------------------------------------------*/
|
||||||
|
|
||||||
socketstreambuf::socketstreambuf(Socket *sock, streamsize n)
|
socketstreambuf::socketstreambuf(Socket *sock, streamsize n)
|
||||||
: streambuf(), __alsize(n), __sock(sock), __pu(NULL), __po(NULL)
|
: streambuf(), __sock(sock), __alsize(n), __pu(NULL), __po(NULL)
|
||||||
{
|
{
|
||||||
setg(0, 0, 0);
|
setg(0, 0, 0);
|
||||||
setp(0, 0);
|
setp(0, 0);
|
||||||
|
|||||||
Reference in New Issue
Block a user