diff options
author | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-24 16:45:36 -0700 |
---|---|---|
committer | Jeremy Huddleston <jeremyhu@apple.com> | 2011-10-24 16:45:36 -0700 |
commit | fb55f8f790f69f30b0ab18648c337bde9d41f5ff (patch) | |
tree | dd469b8e421d4de7ffbb3050e2943e1fb0cca53a | |
parent | 1c8bda798b4480bab0f0da6f531e4770c7a1f771 (diff) |
XQuartz: Fix the filename of our log file
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
-rw-r--r-- | hw/xquartz/darwin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index b483000f8..465a96d12 100644 --- a/hw/xquartz/darwin.c +++ b/hw/xquartz/darwin.c @@ -621,7 +621,7 @@ void OsVendorInit(void) char *lf; char *home = getenv("HOME"); assert(home); - assert(0 < asprintf(&lf, "%s/Library/Logs/X11.%s.log", home, bundle_id_prefix)); + assert(0 < asprintf(&lf, "%s/Library/Logs/%s.X11.log", home, bundle_id_prefix)); LogInit(lf, ".old"); free(lf); |