diff options
author | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-04 23:48:01 +0200 |
commit | 85b77b81caa40f8bcd03921380246cb5863d5d21 (patch) | |
tree | cf4bc60a6760c52bcbd642a253b45f3bc5ad8775 /src/pcm/PcmVolume.cxx | |
parent | 5bf2ec5a74bb1247a8cc84e90577eecbee116c62 (diff) |
*: use gcc.h macros instead of GLib
Diffstat (limited to 'src/pcm/PcmVolume.cxx')
-rw-r--r-- | src/pcm/PcmVolume.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm/PcmVolume.cxx b/src/pcm/PcmVolume.cxx index 2a8027400..ff505e29d 100644 --- a/src/pcm/PcmVolume.cxx +++ b/src/pcm/PcmVolume.cxx @@ -64,7 +64,7 @@ pcm_volume_change_16(int16_t *buffer, const int16_t *end, int volume) * multiplication result instead of emulating 64 bit multiplication. */ static inline int32_t -pcm_volume_sample_24(int32_t sample, int32_t volume, G_GNUC_UNUSED int32_t dither) +pcm_volume_sample_24(int32_t sample, int32_t volume, gcc_unused int32_t dither) { int32_t result; |