From 34fe76780e33879275bd5b9c4426186b3d6eadfd Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Thu, 21 Jun 2007 23:13:37 +0000 Subject: [PATCH] Add missing semi-colons --- src/deluge_core.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/deluge_core.cpp b/src/deluge_core.cpp index 03ec6689b..551a5e046 100644 --- a/src/deluge_core.cpp +++ b/src/deluge_core.cpp @@ -1322,19 +1322,19 @@ static PyObject *torrent_proxy_settings(PyObject *self, PyObject *args) M_proxy_settings->port = portnum; if (peerproxy){ - M_ses->set_peer_proxy(*M_proxy_settings) + M_ses->set_peer_proxy(*M_proxy_settings); } if (webseedproxy){ - M_ses->set_web_seed_proxy(*M_proxy_settings) + M_ses->set_web_seed_proxy(*M_proxy_settings); } if (trackerproxy){ - M_ses->set_tracker_proxy(*M_proxy_settings) + M_ses->set_tracker_proxy(*M_proxy_settings); } if (dhtproxy){ - M_ses->set_dht_proxy(*M_proxy_settings) + M_ses->set_dht_proxy(*M_proxy_settings); } Py_INCREF(Py_None); return Py_None;