1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 21:35:07 +00:00

Tweak default hostname.

This commit is contained in:
Andreas Kling 2018-11-17 00:23:39 +01:00
parent 9d05f6b7a7
commit bb9766ee17

View file

@ -51,7 +51,7 @@ void Process::initialize()
#endif #endif
next_pid = 0; next_pid = 0;
g_processes = new InlineLinkedList<Process>; g_processes = new InlineLinkedList<Process>;
s_hostname = new String("birx"); s_hostname = new String("courage");
Scheduler::initialize(); Scheduler::initialize();
} }