From 2622fdf08074981b5f28725f943ef8bbf750e5ec Mon Sep 17 00:00:00 2001 From: Stephen Anthony Date: Mon, 27 Jul 2020 10:45:41 -0230 Subject: [PATCH] Fix warnings from clang. --- src/common/SoundSDL2.hxx | 2 +- src/emucore/OSystem.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/SoundSDL2.hxx b/src/common/SoundSDL2.hxx index 5a7cd330b..586e90ff8 100644 --- a/src/common/SoundSDL2.hxx +++ b/src/common/SoundSDL2.hxx @@ -113,7 +113,7 @@ class SoundSDL2 : public Sound @param devices List of device names */ - void queryHardware(VariantList& devices); + void queryHardware(VariantList& devices) override; /** Invoked by the sound callback to process the next sound fragment. diff --git a/src/emucore/OSystem.cxx b/src/emucore/OSystem.cxx index 057e5739b..6c5caa8d9 100644 --- a/src/emucore/OSystem.cxx +++ b/src/emucore/OSystem.cxx @@ -470,7 +470,7 @@ string OSystem::createConsole(const FilesystemNode& rom, const string& md5sum, << " ROM file: " << myRomFile.getShortPath() << endl; FilesystemNode propsFile(myRomFile.getPathWithExt(".pro")); if(propsFile.exists()) - buf << " PRO file: " << propsFile.getShortPath() << endl; + buf << " PRO file: " << propsFile.getShortPath() << endl; buf << endl << getROMInfo(*myConsole); Logger::info(buf.str());