Revert "SkDEBUGF: use __VA_ARGS__"

This reverts commit 2267a092356d17f6444502dc92491485ccf24341.

Reason for revert: It looks like Google 3 is failing to compile w/ this CL

Original change's description:
> SkDEBUGF: use __VA_ARGS__
> 
> Change-Id: I42a47e821ff7a7f6cec65b38a8216cabbf0acfce
> Reviewed-on: https://skia-review.googlesource.com/139860
> Reviewed-by: Mike Klein <mtklein@google.com>
> Commit-Queue: Hal Canary <halcanary@google.com>

TBR=mtklein@google.com,halcanary@google.com,reed@google.com

Change-Id: I3aab490f3d2fea103fc915ca01cb0e294df86739
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://skia-review.googlesource.com/140660
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/fuzz/FuzzDrawFunctions.cpp b/fuzz/FuzzDrawFunctions.cpp
index 3eeed1c..15443fd 100644
--- a/fuzz/FuzzDrawFunctions.cpp
+++ b/fuzz/FuzzDrawFunctions.cpp
@@ -81,7 +81,7 @@
                                          (SkColorType)colorType,
                                          b ? kOpaque_SkAlphaType : kPremul_SkAlphaType);
     if (!bmp->tryAllocPixels(info)) {
-        SkDEBUGF("Bitmap not allocated\n");
+        SkDEBUGF(("Bitmap not allocated\n"));
     }
     SkColor c;
     fuzz->next(&c);
@@ -318,36 +318,36 @@
               SkDebugf("Could not initialize font.\n");
               fuzz->signalBug();
             }
-            SkDEBUGF("Fuzz DrawText\n");
+            SkDEBUGF(("Fuzz DrawText\n"));
             fuzz_drawText(fuzz, f);
             return;
         }
         case 1:
-            SkDEBUGF("Fuzz DrawRect\n");
+            SkDEBUGF(("Fuzz DrawRect\n"));
             fuzz_drawRect(fuzz);
             return;
         case 2:
-            SkDEBUGF("Fuzz DrawCircle\n");
+            SkDEBUGF(("Fuzz DrawCircle\n"));
             fuzz_drawCircle(fuzz);
             return;
         case 3:
-            SkDEBUGF("Fuzz DrawLine\n");
+            SkDEBUGF(("Fuzz DrawLine\n"));
             fuzz_drawLine(fuzz);
             return;
         case 4:
-            SkDEBUGF("Fuzz DrawPath\n");
+            SkDEBUGF(("Fuzz DrawPath\n"));
             fuzz_drawPath(fuzz);
             return;
         case 5:
-            SkDEBUGF("Fuzz DrawImage/DrawImageRect\n");
+            SkDEBUGF(("Fuzz DrawImage/DrawImageRect\n"));
             fuzz_drawImage(fuzz);
             return;
         case 6:
-            SkDEBUGF("Fuzz DrawBitmap\n");
+            SkDEBUGF(("Fuzz DrawBitmap\n"));
             fuzz_drawBitmap(fuzz);
             return;
         case 7:
-            SkDEBUGF("Fuzz DrawPaint\n");
+            SkDEBUGF(("Fuzz DrawPaint\n"));
             fuzz_drawPaint(fuzz);
             return;
     }