diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-10-30 13:59:29 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-10-30 13:59:29 +0100 |
commit | 68739dc43e6bc42f9cac79fe5cbec714ddeeb218 (patch) | |
tree | 705579b6a757d6219d28e6a8c2a4244eb828bcaa /VirtualFileSystem/RandomDevice.cpp | |
parent | bd2b5327d042f5bf04ae7089d8b36c113313f8f3 (diff) | |
download | serenity-68739dc43e6bc42f9cac79fe5cbec714ddeeb218.zip |
Start working on virtual consoles/TTYs.
This is a mess right now, but I'd rather commit as I go.
Diffstat (limited to 'VirtualFileSystem/RandomDevice.cpp')
-rw-r--r-- | VirtualFileSystem/RandomDevice.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/VirtualFileSystem/RandomDevice.cpp b/VirtualFileSystem/RandomDevice.cpp index d34ac8400b..2f5cb50807 100644 --- a/VirtualFileSystem/RandomDevice.cpp +++ b/VirtualFileSystem/RandomDevice.cpp @@ -3,6 +3,7 @@ #include <AK/StdLib.h> RandomDevice::RandomDevice() + : CharacterDevice(1, 8) { } |