[mpg123-devel] Opened GH-#12: streamdump: use correct dump_close function [JohannesKauffmann]
Brought to you by:
sobukus
From: <ano...@gm...> - 2023-12-29 16:10:06
|
A pull request by JohannesKauffmann was opened at 2023-12-29 15:57:53+00:00. Please visit https://github.com/madebr/mpg123/pull/12 to give feedback and review the code. --- The function doesn't take a parameter, so don't pass it. Caught by Clang's -Wdeprecated-non-prototype: ``` ../src/streamdump.c:691:13: error: passing arguments to 'dump_close' without a prototype is deprecated in all versions of C and is not supported in C2x [-Werror,-Wdeprecated-non-prototype] dump_close(sd); ^ ``` --- patch details: - url: https://github.com/madebr/mpg123/pull/12 - patch: https://github.com/madebr/mpg123/pull/12.patch url details: - user name: JohannesKauffmann - user url: https://github.com/JohannesKauffmann |