diff options
author | Andreas Kling <kling@serenityos.org> | 2021-04-03 20:36:25 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-03 20:36:25 +0200 |
commit | f1ea092d8f9fd8cf8335f6f7d0ad99834c674a72 (patch) | |
tree | b0d2d0600e6fad4e59c33f1cb10dbe23a5dc03ff /Base/home | |
parent | 8abbb7e09015d82a9e3a477f301aa05a921b04a3 (diff) | |
download | serenity-f1ea092d8f9fd8cf8335f6f7d0ad99834c674a72.zip |
Base: Make the "little" test program compilable again
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/Source/little/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/home/anon/Source/little/main.cpp b/Base/home/anon/Source/little/main.cpp index 55b8bed3c6..9ee63e2f4c 100644 --- a/Base/home/anon/Source/little/main.cpp +++ b/Base/home/anon/Source/little/main.cpp @@ -26,7 +26,7 @@ int main(int, char**) Container container; for (int i = 0; i < 3; ++i) { // This is a comment :^) - func(); + MyNamespace::func(); printf("Hello friends!\n"); mkdir("/tmp/xyz", 0755); } |