Fix borealis build error

libfmt in borealis is stuck at 6.1.2 and using make_args_checked making
the build fails.

BUG=b:177290952
TEST=make
TEST=./vkbench -t copy --verbose --vlayer

Change-Id: I37e689bfcbddb181e8381afa642f8642257ee9fb
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/vkbench/+/3176392
Reviewed-by: Phillip Pearson <philpearson@google.com>
Reviewed-by: Ilja H. Friedel <ihf@chromium.org>
Tested-by: Phillip Pearson <philpearson@google.com>
Tested-by: Po-Hsien Wang <pwang@chromium.org>
Auto-Submit: Po-Hsien Wang <pwang@chromium.org>
diff --git a/src/utils.h b/src/utils.h
index f12f7a1..5e80881 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -106,7 +106,7 @@
           const S& format,
           Args&&... args) {
   DbgPrintf(type, file, line, fileid, format,
-            fmt::make_args_checked<Args...>(format, args...));
+            fmt::make_format_args(args...));
 }
 
 #define DEBUG(fmt, ...)        \