diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-09-03 13:18:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 13:18:27 +0200 |
commit | 315ee66f4e80acb9fd1fe67c13aa9db3e08ffba6 (patch) | |
tree | e125249063f688eb90582016838d0c876a68918c /drivers/alsa/audio_driver_alsa.h | |
parent | 493b30821529baf2c235eb387f2b7964774c0cc7 (diff) | |
parent | f6ad1954f76165aefb05e12e5f82cbf5d763c85e (diff) |
Merge pull request #41731 from madmiraal/fix-header-guards
Ensure header guards enclose entire header.
Diffstat (limited to 'drivers/alsa/audio_driver_alsa.h')
-rw-r--r-- | drivers/alsa/audio_driver_alsa.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/alsa/audio_driver_alsa.h b/drivers/alsa/audio_driver_alsa.h index 7aec0c4071..d1220d126e 100644 --- a/drivers/alsa/audio_driver_alsa.h +++ b/drivers/alsa/audio_driver_alsa.h @@ -28,11 +28,11 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifdef ALSA_ENABLED - #ifndef AUDIO_DRIVER_ALSA_H #define AUDIO_DRIVER_ALSA_H +#ifdef ALSA_ENABLED + #include "core/os/mutex.h" #include "core/os/thread.h" #include "servers/audio_server.h" @@ -88,6 +88,6 @@ public: ~AudioDriverALSA() {} }; -#endif // AUDIO_DRIVER_ALSA_H - #endif // ALSA_ENABLED + +#endif // AUDIO_DRIVER_ALSA_H |