aboutsummaryrefslogtreecommitdiff
path: root/libgomp
diff options
context:
space:
mode:
authortschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-17 18:24:07 +0000
committertschwinge <tschwinge@138bc75d-0d04-0410-961f-82ee72b054a4>2015-02-17 18:24:07 +0000
commit84551a30dc6b717eb8684578b0463e951270a5e8 (patch)
tree41a55ed4b7b1f62db227a785de2481f13edc6208 /libgomp
parent5947a4f00867bfbf13910f29dd4b327ca89f6d5a (diff)
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')
-rw-r--r--libgomp/ChangeLog4
-rw-r--r--libgomp/libgomp-plugin.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog
index 2c32d9e94fb..8477c3bf464 100644
--- a/libgomp/ChangeLog
+++ b/libgomp/ChangeLog
@@ -1,4 +1,8 @@
2015-02-17 Thomas Schwinge <thomas@codesourcery.com>
+
+ * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.
+
+2015-02-17 Thomas Schwinge <thomas@codesourcery.com>
Cesar Philippidis <cesar@codesourcery.com>
* oacc-ptx.h (GOACC_INTERNAL_PTX): Add GOACC_tid, GOACC_ntid,
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);
}