--- deliantra/server/common/exp.C 2006/09/10 16:00:23 1.5 +++ deliantra/server/common/exp.C 2006/12/11 21:32:15 1.9 @@ -1,9 +1,3 @@ - -/* - * 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 @@ -24,7 +18,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 +204,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++;