diff options
author | Cary Coutant <ccoutant@google.com> | 2008-12-01 19:05:46 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2008-12-01 19:05:46 +0000 |
commit | 1daccbfefaded1cdf5b2b299d3f8a5e42c2ab6c0 (patch) | |
tree | cc634c1bbddefcca997826ad14d1f3f41a80a91f | |
parent | 23dd7133633bc8cdfdd3b8b32d186dd6b9d023f0 (diff) | |
download | gdb-1daccbfefaded1cdf5b2b299d3f8a5e42c2ab6c0.tar.gz |
* plugin-api.h: Fix syntax error when compiling with C++.
-rw-r--r-- | include/ChangeLog | 4 | ||||
-rw-r--r-- | include/plugin-api.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/ChangeLog b/include/ChangeLog index 96c84746e20..1c162dc7e7c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2008-12-01 Cary Coutant <ccoutant@google.com> + + * plugin-api.h: Fix syntax error when compiling with C++. + 2008-11-26 Alan Modra <amodra@bigpond.net.au> PR 7047 diff --git a/include/plugin-api.h b/include/plugin-api.h index 45b58202eb8..3af486c5a1d 100644 --- a/include/plugin-api.h +++ b/include/plugin-api.h @@ -236,7 +236,7 @@ enum ld_plugin_status (*ld_plugin_onload) (struct ld_plugin_tv *tv); #ifdef __cplusplus -}; +} #endif #endif /* !defined(PLUGIN_API_H) */ |