diff options
author | DJ Delorie <dj@redhat.com> | 2009-10-09 16:17:35 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2009-10-09 16:17:35 +0000 |
commit | e322137b9b864508a8b8f378ebb331589812ed18 (patch) | |
tree | 86ef3655fb962533c823fc8a2735fa8b64c2a483 | |
parent | 0c9b2b4cc65d1bee30d4e4b8ee715c7e90156fac (diff) | |
download | gdb-e322137b9b864508a8b8f378ebb331589812ed18.zip gdb-e322137b9b864508a8b8f378ebb331589812ed18.tar.gz gdb-e322137b9b864508a8b8f378ebb331589812ed18.tar.bz2 |
merge from gcc
-rw-r--r-- | include/ChangeLog | 5 | ||||
-rw-r--r-- | include/plugin-api.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 6712b5e..fe9b38f 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,8 @@ +2009-10-09 Rafael Espindola <espindola@google.com> + + * plugin-api.h (ld_plugin_add_input_library): Change argument name to + libname. + 2008-10-03 Rafael Espindola <espindola@google.com> * plugin-api.h: New. diff --git a/include/plugin-api.h b/include/plugin-api.h index 530f3f4..a026e7a 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -218,7 +218,7 @@ enum ld_plugin_status typedef enum ld_plugin_status -(*ld_plugin_add_input_library) (char *pathname); +(*ld_plugin_add_input_library) (char *libname); /* The linker's interface for issuing a warning or error message. */ |