This commit is contained in:
Hackerpilot 2013-10-29 21:16:13 -07:00
parent 80a99561d0
commit da48901dd0
1 changed files with 3 additions and 3 deletions

View File

@ -42,9 +42,6 @@ version(OSX) version = useXDG;
int main(string[] args)
{
// No relative paths
version (Posix) chdir("/");
ushort port = 9166;
bool help;
string[] importPaths;
@ -87,6 +84,9 @@ int main(string[] args)
ubyte[] buffer = new ubyte[1024 * 1024 * 4]; // 4 megabytes should be enough for anybody...
// No relative paths
version (Posix) chdir("/");
writeln("Startup complete");
while (true)