Commit 1cd88c71 by Richard Stallman

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

From-SVN: r4631
parent 08a2b118
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment