summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-28 21:56:19 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-28 21:56:19 +0200
commit7356fd389f4e73f98f3c28b91830189fea109b5b (patch)
treefe3907e724e4882dd9f11d724bfff6aa2a8b3cf5
parent66f8ea92cbd200894370d3c7a58024257a2c3167 (diff)
downloadserenity-7356fd389f4e73f98f3c28b91830189fea109b5b.zip
aplay: s/Sample/Progress/ in the output. It's all in the details!
-rw-r--r--Userland/aplay.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/aplay.cpp b/Userland/aplay.cpp
index 5582fd9ca0..3c2068fb4a 100644
--- a/Userland/aplay.cpp
+++ b/Userland/aplay.cpp
@@ -16,12 +16,12 @@ int main(int argc, char** argv)
a_conn.handshake();
AWavLoader loader(argv[1]);
- printf("\033[34;1mPlaying\033[0m: %s\n", argv[1]);
- printf("\033[34;1m Format\033[0m: %u Hz, %u-bit, %s\n",
+ printf("\033[34;1m Playing\033[0m: %s\n", argv[1]);
+ printf("\033[34;1m Format\033[0m: %u Hz, %u-bit, %s\n",
loader.sample_rate(),
loader.bits_per_sample(),
loader.num_channels() == 1 ? "Mono" : "Stereo");
- printf("\033[34;1m Sample\033[0m: \033[s");
+ printf("\033[34;1mProgress\033[0m: \033[s");
for (;;) {
auto samples = loader.get_more_samples();
if (!samples)