gold/ChangeLog:
* plugin.cc (ld_plugin_message): Change format parameter to const. Fix mismatch between new[] and delete. include/ChangeLog: * plugin-api.h (ld_plugin_message): Change format parameter to const.
This commit is contained in:
parent
54e01333f7
commit
15bb3d1e84
|
@ -1,3 +1,7 @@
|
|||
2008-12-01 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* plugin-api.h (ld_plugin_message): Change format parameter to const.
|
||||
|
||||
2008-12-01 Cary Coutant <ccoutant@google.com>
|
||||
|
||||
* plugin-api.h: Fix syntax error when compiling with C++.
|
||||
|
|
|
@ -182,7 +182,7 @@ enum ld_plugin_status
|
|||
|
||||
typedef
|
||||
enum ld_plugin_status
|
||||
(*ld_plugin_message) (int level, char *format, ...);
|
||||
(*ld_plugin_message) (int level, const char *format, ...);
|
||||
|
||||
enum ld_plugin_level
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue