libgomp: Make GOMP_PLUGIN_debug actually work...
authorThomas Schwinge <thomas@codesourcery.com>
Tue, 17 Feb 2015 18:24:07 +0000 (19:24 +0100)
committerThomas Schwinge <tschwinge@gcc.gnu.org>
Tue, 17 Feb 2015 18:24:07 +0000 (19:24 +0100)
libgomp/
* libgomp-plugin.c (GOMP_PLUGIN_debug): Fix typo.

From-SVN: r220770

libgomp/ChangeLog
libgomp/libgomp-plugin.c

index 2c32d9e94fb7957410aac30e9227528165fcf4d5..8477c3bf4644391d4b4e1cdb982611a369125635 100644 (file)
@@ -1,3 +1,7 @@
+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>
 
index ffb22e938622288cd65715460ed8cbd1beeffc3d..f448ba91e40b8e9730067cdcafb044205dbffe05 100644 (file)
@@ -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);
 }