summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-24 13:30:04 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-04-24 13:30:04 +0000
commit4b45dc123430e58191d7d71ebd8f46127f99d8fb (patch)
tree42750ca95e366452e0e718aeda09503476b68b14 /include/inspircd.h
parent5d407fb44c759524881712a80febb86b4506ddbf (diff)
Typo in the macro :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3905 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 3acd1b30f..558056198 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -42,7 +42,7 @@
*/
#define IS_SINGLE(x,y) ( (*x == y) && (*(x+1) == 0) )
-#define DELETE(x) { log(DEBUG,__FILE__" ("__LINE__"): delete()"); delete x; }
+#define DELETE(x) { log(DEBUG,"%s:%s: delete()",__FILE__,__LINE__); delete x; }
template<typename T> inline std::string ConvToStr(const T &in)
{