diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-21 00:48:42 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-21 00:48:42 +0000 |
commit | 7fcb5797a6b98757d766997a1f4e48bf1eee8042 (patch) | |
tree | 003cd62c7fd1b7a6aa794fba967008cdbf6a7310 /src | |
parent | 3ebfd76d887d12a7530cf8d9deaa6bdf97cc9e78 (diff) |
Slight tidyup: type name = type(args); --> type name(args);
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4470 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/extra/m_testclient.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_testclient.cpp b/src/modules/extra/m_testclient.cpp index b1d8a3384..3cd4742c9 100644 --- a/src/modules/extra/m_testclient.cpp +++ b/src/modules/extra/m_testclient.cpp @@ -35,7 +35,7 @@ public: if(target) { - SQLrequest foo = SQLrequest(this, target, "SELECT foo, bar FROM rawr", "foo"); + SQLrequest foo(this, target, "SELECT foo, bar FROM rawr", "foo"); if(foo.Send()) { |