diff options
author | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2014-05-31 17:22:51 -0700 |
---|---|---|
committer | Jeremy Huddleston Sequoia <jeremyhu@apple.com> | 2014-05-31 17:48:19 -0700 |
commit | ad0ff649c68b18c4b95b078c2d1d1e7de71a7c6f (patch) | |
tree | 97d19159df29cb122c6f7f0dfae7467319d8e174 /hw/xquartz | |
parent | e281288d5afedb154f52c31f70a350a013ecfb06 (diff) |
XQuartz: Dead code removal (ENABLE_DEBUG_LOG)
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Diffstat (limited to 'hw/xquartz')
-rw-r--r-- | hw/xquartz/darwin.c | 16 |
1 files changed, 0 insertions, 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 } } |