From 360218be0c7a35a3ce1f66611df3077b1d0e18e1 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 16 Sep 2012 06:13:48 -0700 Subject: [PATCH] Print compile errors to STDERR --- compile.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.php b/compile.php index f727d5bf..f02f2e19 100755 --- a/compile.php +++ b/compile.php @@ -298,7 +298,7 @@ foreach (glob(dirname(__FILE__) . "/adminer/drivers/" . ($driver ? $driver : "*" $file = file_get_contents($filename); foreach ($functions as $val) { if (!strpos($file, "$val(")) { - echo "Missing $val in $filename\n"; + fprintf(STDERR, "Missing $val in $filename\n"); } } }