summaryrefslogtreecommitdiff
path: root/Userland/Utilities/aplay.cpp
diff options
context:
space:
mode:
authorLucas CHOLLET <lucas.chollet@free.fr>2022-10-12 18:20:39 +0200
committerLinus Groh <mail@linusgroh.de>2022-10-14 23:11:23 +0200
commit2d6124049a5d58865d3ecf206529d1bb1292c289 (patch)
tree17dc41f2eeb04a38e3c332f6314f6bd1c882677c /Userland/Utilities/aplay.cpp
parent1444b42936698330398475eba88c370e2b676bf8 (diff)
downloadserenity-2d6124049a5d58865d3ecf206529d1bb1292c289.zip
LibAudio: Get rid of unused method `Loader::file()`
`aplay` and two files of `SoundPlayer` were relying on the include of `LibCore/File.h` by `Loader.h`.
Diffstat (limited to 'Userland/Utilities/aplay.cpp')
-rw-r--r--Userland/Utilities/aplay.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Utilities/aplay.cpp b/Userland/Utilities/aplay.cpp
index d846fc702b..ed57cfc685 100644
--- a/Userland/Utilities/aplay.cpp
+++ b/Userland/Utilities/aplay.cpp
@@ -11,6 +11,7 @@
#include <LibAudio/Resampler.h>
#include <LibCore/ArgsParser.h>
#include <LibCore/EventLoop.h>
+#include <LibCore/File.h>
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <math.h>