From b56f17380498e2c9ab91c888d373d2389323145e Mon Sep 17 00:00:00 2001 From: psychon Date: Wed, 17 Jun 2009 12:30:39 +0000 Subject: [PATCH] Fix a harmless compiler warning Kuja is messing with GCC snapshots again (thanks!). (btw the warning was 'value computed is not used') git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1543 726aef4b-f618-498e-8847-2d620e286838 --- User.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/User.cpp b/User.cpp index be506213..8c4bc754 100644 --- a/User.cpp +++ b/User.cpp @@ -512,7 +512,7 @@ bool CUser::IsValidUserName(const CString& sUserName) { return false; } - *p++; + p++; } return true;