(objc_msg_sendv): Pass a dummy va_list, not 0, to objc_error.

From-SVN: r4631
This commit is contained in:
Richard Stallman 1993-06-05 03:00:59 +00:00
parent 08a2b1188a
commit 1cd88c716e
1 changed files with 2 additions and 1 deletions

View File

@ -97,7 +97,8 @@ objc_msg_sendv(id object, SEL op, size_t frame_size, arglist_t arg_frame)
frame_size);
#else
#warning performv:: will not work
(*_objc_error)(object, "objc_msg_sendv (performv::) not supported\n", 0);
va_list nothing;
(*_objc_error)(object, "objc_msg_sendv (performv::) not supported\n", nothing);
return 0;
#endif
}