summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-12-04 21:58:27 +0000
committerDavid Robillard <d@drobilla.net>2008-12-04 21:58:27 +0000
commit13f41fc0e6c947a90721128320a2b9239beefa2f (patch)
tree292fb99e3f2915076edcbc702d0c120dedc0ebd1 /src
parentd4a3ba6fc510eb60f888df6217db51c0493c6d05 (diff)
downloadingen-13f41fc0e6c947a90721128320a2b9239beefa2f.tar.gz
ingen-13f41fc0e6c947a90721128320a2b9239beefa2f.tar.bz2
ingen-13f41fc0e6c947a90721128320a2b9239beefa2f.zip
Fix compilation with HTTP enabled.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1847 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/client/HTTPClientReceiver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/HTTPClientReceiver.cpp b/src/client/HTTPClientReceiver.cpp
index 520c1e9d..9464407a 100644
--- a/src/client/HTTPClientReceiver.cpp
+++ b/src/client/HTTPClientReceiver.cpp
@@ -148,7 +148,7 @@ HTTPClientReceiver::message_callback(SoupSession* session, SoupMessage* msg, voi
me->_target->enable();
me->_parser->parse_string(me->_world, me->_target.get(),
Glib::ustring(msg->response_body->data),
- Glib::ustring("."), Glib::ustring(""));
+ Glib::ustring("."));
}
} else if (path == "/patch") {
@@ -160,7 +160,7 @@ HTTPClientReceiver::message_callback(SoupSession* session, SoupMessage* msg, voi
me->_target->enable();
me->_parser->parse_string(me->_world, me->_target.get(),
Glib::ustring(msg->response_body->data),
- Glib::ustring("/patch/"), Glib::ustring(""));
+ Glib::ustring("/patch/"));
}
} else if (path == "/stream") {