summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJess VanDerwalker <washu@sonic.net>2012-03-05 14:02:35 -0800
committerJess VanDerwalker <washu@sonic.net>2012-03-05 14:02:35 -0800
commitf02cd4fb74f87146a02044d8fcfd5569b03db1a9 (patch)
tree49c4ff0865293ddd6c14d71c6a1013a6760d36a7
parent9a9ad20db4b0320eab3bbe17c435b51665c0abcf (diff)
Fixed bug - const * const * to char * const *
-rw-r--r--src/xtoq/XtoqController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xtoq/XtoqController.m b/src/xtoq/XtoqController.m
index fc59050..6c7f9f1 100644
--- a/src/xtoq/XtoqController.m
+++ b/src/xtoq/XtoqController.m
@@ -160,7 +160,7 @@
spawn[3] = NULL;
NSLog(@"Killing the Xorg Connection.");
- posix_spawn(&child, spawn[0], NULL, NULL, (const * const*)spawn, environ);
+ posix_spawn(&child, spawn[0], NULL, NULL, (char * const*)spawn, environ);
}
- (void) applicationDidFinishLaunching: (NSNotification *) aNotification