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 /test/software_volume.cxx | |
parent | 5bf2ec5a74bb1247a8cc84e90577eecbee116c62 (diff) |
*: use gcc.h macros instead of GLib
Diffstat (limited to 'test/software_volume.cxx')
-rw-r--r-- | test/software_volume.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/software_volume.cxx b/test/software_volume.cxx index c46804731..d3b47d74a 100644 --- a/test/software_volume.cxx +++ b/test/software_volume.cxx @@ -65,6 +65,6 @@ int main(int argc, char **argv) return 2; } - G_GNUC_UNUSED ssize_t ignored = write(1, buffer, nbytes); + gcc_unused ssize_t ignored = write(1, buffer, nbytes); } } |