[fuchsia][logging] Use final API

The original API has had it's signature updated and can be used
directly.

Change-Id: Ibe85230da67ad00c0c5c41f4e3a7c0f53e0cfe6e
Reviewed-on: https://fuchsia-review.googlesource.com/c/third_party/mesa/+/464542
Reviewed-by: Craig Stout <cstout@google.com>
diff --git a/src/intel/common/intel_log.c b/src/intel/common/intel_log.c
index 8c0d07d..4d2d80b 100644
--- a/src/intel/common/intel_log.c
+++ b/src/intel/common/intel_log.c
@@ -99,7 +99,7 @@
 #ifdef ANDROID
    __android_log_vprint(level_to_android(level), tag, format, va);
 #elif defined(__Fuchsia__)
-   _FX_LOGVF2(level_to_fuchsia(level), tag, file, line, format, va);
+   _FX_LOGVF(level_to_fuchsia(level), tag, file, line, format, va);
 #else
    flockfile(stderr);
    fprintf(stderr, "%s: %s: ", tag, level_to_str(level));