diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-12-03 00:39:25 +0100 |
commit | f6e27c2abe9da2ed1159cfc30618afc66bfbab79 (patch) | |
tree | 511a2b15828a5b431bc54a6c95d0986453d48753 /VirtualFileSystem/RandomDevice.cpp | |
parent | d824442e3e4961e6df18aeb625f645a98760ac2a (diff) | |
download | serenity-f6e27c2abe9da2ed1159cfc30618afc66bfbab79.zip |
More coding style changes.
Diffstat (limited to 'VirtualFileSystem/RandomDevice.cpp')
-rw-r--r-- | VirtualFileSystem/RandomDevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/VirtualFileSystem/RandomDevice.cpp b/VirtualFileSystem/RandomDevice.cpp index 9b2b63891f..bcc81a4793 100644 --- a/VirtualFileSystem/RandomDevice.cpp +++ b/VirtualFileSystem/RandomDevice.cpp @@ -29,7 +29,7 @@ static void mysrand(unsigned seed) } #endif -bool RandomDevice::hasDataAvailableForRead() const +bool RandomDevice::has_data_available_for_reading() const { return true; } |