diff options
author | Dan Winship <danw@gnome.org> | 2010-01-23 16:02:09 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2010-01-23 16:02:09 -0500 |
commit | e2daa0c666e1fd0f3da9ca08495a78c3de64f811 (patch) | |
tree | 9a2d278c5c7a9dc5f0d8ab711521d585450a8387 /tests | |
parent | e5491307570a3e4594968e9a307eaaf7dda5d7ab (diff) | |
download | libsoup-e2daa0c666e1fd0f3da9ca08495a78c3de64f811.tar.gz libsoup-e2daa0c666e1fd0f3da9ca08495a78c3de64f811.tar.bz2 libsoup-e2daa0c666e1fd0f3da9ca08495a78c3de64f811.zip |
tests/simple-proxy.c: remove obvious dead assignment noted by clang
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simple-proxy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/simple-proxy.c b/tests/simple-proxy.c index b8cd1645..117c3ff8 100644 --- a/tests/simple-proxy.c +++ b/tests/simple-proxy.c @@ -93,7 +93,6 @@ server_callback (SoupServer *server, SoupMessage *msg, return; } - msg2 = soup_message_new (msg->method, uristr); msg2 = soup_message_new (msg->method, uristr); soup_message_headers_foreach (msg->request_headers, copy_header, msg2->request_headers); |