diff options
author | asynts <asynts@gmail.com> | 2020-11-09 10:47:19 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-11-09 16:21:29 +0100 |
commit | 3b3edbc4d207758e4451568341be07ae53d80418 (patch) | |
tree | 3d71c4bb5b6750bf27d9eb9559daf7a17e5a5d2a /Demos | |
parent | 74438e6fdc9d7e4278eb702f87fc703b8a576071 (diff) | |
download | serenity-3b3edbc4d207758e4451568341be07ae53d80418.zip |
AK: Rename new_out to out and new_warn to warn.
Diffstat (limited to 'Demos')
-rw-r--r-- | Demos/DynamicLink/LinkDemo/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/DynamicLink/LinkDemo/main.cpp b/Demos/DynamicLink/LinkDemo/main.cpp index d927d45336..ae4c7bacd7 100644 --- a/Demos/DynamicLink/LinkDemo/main.cpp +++ b/Demos/DynamicLink/LinkDemo/main.cpp @@ -49,7 +49,7 @@ int main(int argc, char** argv, char** envp) auto byte_ptr = (uint8_t*)auxvp->a_un.a_ptr; outln(" My Random bytes are: "); for (size_t i = 0; i < 16; ++i) - new_out("{:#02x} ", byte_ptr[i]); + out("{:#02x} ", byte_ptr[i]); outln(); } } |