From ad0ff649c68b18c4b95b078c2d1d1e7de71a7c6f Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Sequoia Date: Sat, 31 May 2014 17:22:51 -0700 Subject: [PATCH] XQuartz: Dead code removal (ENABLE_DEBUG_LOG) Signed-off-by: Jeremy Huddleston Sequoia --- hw/xquartz/darwin.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index e0983d6ef..29c6438a0 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -704,22 +704,6 @@ OsVendorInit(void) free(lf); DarwinPrintBanner(); -#ifdef ENABLE_DEBUG_LOG - { - char *home_dir = NULL, *log_file_path = NULL; - home_dir = getenv("HOME"); - if (home_dir) asprintf(&log_file_path, "%s/%s", home_dir, - DEBUG_LOG_NAME); - if (log_file_path) { - if (!access(log_file_path, F_OK)) { - debug_log_fp = fopen(log_file_path, "a"); - if (debug_log_fp) ErrorF("Debug logging enabled to %s\n", - log_file_path); - } - free(log_file_path); - } - } -#endif } }