It's vsnprintf(), not vnsprintf()...

git-svn-id: file:///fltk/svn/fltk/trunk@57 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 1998-11-05 19:46:59 +00:00
parent 3e181b5c3c
commit 754414ac6a

View File

@ -1,5 +1,5 @@
// //
// "$Id: Fl_abort.cxx,v 1.4 1998/11/05 16:04:49 mike Exp $" // "$Id: Fl_abort.cxx,v 1.5 1998/11/05 19:46:59 mike Exp $"
// //
// Warning/error message code for the Fast Light Tool Kit (FLTK). // Warning/error message code for the Fast Light Tool Kit (FLTK).
// //
@ -64,7 +64,7 @@ static void warning(const char *format, ...) {
va_list args; va_list args;
char buf[1024]; char buf[1024];
va_start(args, format); va_start(args, format);
vnsprintf(buf, 1024, format, args); vsnprintf(buf, 1024, format, args);
va_end(args); va_end(args);
MessageBox(0,buf,"Warning",MB_ICONEXCLAMATION|MB_OK); MessageBox(0,buf,"Warning",MB_ICONEXCLAMATION|MB_OK);
} }
@ -73,7 +73,7 @@ static void error(const char *format, ...) {
va_list args; va_list args;
char buf[1024]; char buf[1024];
va_start(args, format); va_start(args, format);
vnsprintf(buf, 1024, format, args); vsnprintf(buf, 1024, format, args);
va_end(args); va_end(args);
MessageBox(0,buf,"Error",MB_ICONSTOP|MB_SYSTEMMODAL); MessageBox(0,buf,"Error",MB_ICONSTOP|MB_SYSTEMMODAL);
::exit(1); ::exit(1);
@ -86,5 +86,5 @@ void (*Fl::error)(const char* format, ...) = ::error;
void (*Fl::fatal)(const char* format, ...) = ::error; void (*Fl::fatal)(const char* format, ...) = ::error;
// //
// End of "$Id: Fl_abort.cxx,v 1.4 1998/11/05 16:04:49 mike Exp $". // End of "$Id: Fl_abort.cxx,v 1.5 1998/11/05 19:46:59 mike Exp $".
// //