Typo HAVE_LONg_LONG instead of HAVE_LONG_LONG

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5850 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Matthias Melcher 2007-05-21 15:56:17 +00:00
parent abde88e220
commit 688c47020f

View File

@ -161,7 +161,7 @@ int fl_vsnprintf(char* buffer, size_t bufsize, const char* format, va_list ap) {
case 'x' :
if ((width + 2) > sizeof(temp)) break;
#ifdef HAVE_LONg_LONG
#ifdef HAVE_LONG_LONG
if (size == 'L')
sprintf(temp, tformat, va_arg(ap, long long));
else