--- deliantra/server/common/exp.C 2006/09/10 16:00:23 1.5 +++ deliantra/server/common/exp.C 2007/01/06 14:42:28 1.10 @@ -1,12 +1,7 @@ - -/* - * static char *rcsid_arch_c = - * "$Id: exp.C,v 1.5 2006/09/10 16:00:23 root Exp $"; - */ - /* CrossFire, A Multiplayer game for X-windows + Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team Copyright (C) 2002 Mark Wedel & Crossfire Development Team Copyright (C) 1992 Frank Tore Johansen @@ -24,7 +19,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - The authors can be reached via e-mail at crossfire-devel@real-time.com + The authors can be reached via e-mail at */ #include @@ -210,11 +205,7 @@ */ if (tmpexp <= lastexp) { -#ifndef WIN32 - LOG (llevError, "Experience for level %d is lower than previous level (%lld <= %lld)\n", lastlevel + 1, tmpexp, lastexp); -#else - LOG (llevError, "Experience for level %d is lower than previous level (%I64d <= %I64d)\n", lastlevel + 1, tmpexp, lastexp); -#endif + LOG (llevError, "Experience for level %d is lower than previous level (%" PRId64 " <= %" PRId64 ")\n", lastlevel + 1, tmpexp, lastexp); exit (1); } lastlevel++;