diff options
author | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-17 18:24:07 +0000 |
---|---|---|
committer | tschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-02-17 18:24:07 +0000 |
commit | 84551a30dc6b717eb8684578b0463e951270a5e8 (patch) | |
tree | 41a55ed4b7b1f62db227a785de2481f13edc6208 /libgomp/libgomp-plugin.c | |
parent | 5947a4f00867bfbf13910f29dd4b327ca89f6d5a (diff) | |
download | gcc-84551a30dc6b717eb8684578b0463e951270a5e8.tar.gz |
libgomp: Make GOMP_PLUGIN_debug actually work...
libgomp/
* libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@220770 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgomp/libgomp-plugin.c')
-rw-r--r-- | libgomp/libgomp-plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/libgomp-plugin.c b/libgomp/libgomp-plugin.c index ffb22e93862..f448ba91e40 100644 --- a/libgomp/libgomp-plugin.c +++ b/libgomp/libgomp-plugin.c @@ -55,7 +55,7 @@ GOMP_PLUGIN_debug (int kind, const char *msg, ...) va_list ap; va_start (ap, msg); - gomp_debug (kind, msg, ap); + gomp_vdebug (kind, msg, ap); va_end (ap); } |