aboutsummaryrefslogtreecommitdiff
path: root/libgomp/libgomp-plugin.c
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2015-02-17 19:24:07 +0100
committerThomas Schwinge <tschwinge@gcc.gnu.org>2015-02-17 19:24:07 +0100
commita2818955d7a57e099a02eb7291cfc13bf35c4fa9 (patch)
tree41a55ed4b7b1f62db227a785de2481f13edc6208 /libgomp/libgomp-plugin.c
parent6f3c1d38bf9cd954a1e9747bcd2c711736b82fb6 (diff)
downloadgcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.zip
gcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.tar.gz
gcc-a2818955d7a57e099a02eb7291cfc13bf35c4fa9.tar.bz2
libgomp: Make GOMP_PLUGIN_debug actually work...
libgomp/ * libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo. From-SVN: r220770
Diffstat (limited to 'libgomp/libgomp-plugin.c')
-rw-r--r--libgomp/libgomp-plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgomp/libgomp-plugin.c b/libgomp/libgomp-plugin.c
index ffb22e9..f448ba9 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);
}