Files
audiofile/createTemporaryFile-argument-fix.patch
Takashi Iwai 19c4456824 Accepting request 1157294 from home:tiwai:branches:multimedia:libs
- Fix the incorrect argument passed to createTemporaryFile() (bsc#1221308):
  createTemporaryFile-argument-fix.patch
- Refresh patch to be applied with -p1, use autosetup macro for cleanup
- Put COPYING* to licenses

OBS-URL: https://build.opensuse.org/request/show/1157294
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/audiofile?expand=0&rev=47
2024-03-12 16:36:17 +00:00

16 lines
523 B
Diff

---
test/sixteen-stereo-to-eight-mono.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/test/sixteen-stereo-to-eight-mono.c
+++ b/test/sixteen-stereo-to-eight-mono.c
@@ -58,7 +58,7 @@ int main (int argc, char **argv)
afInitChannels(setup, AF_DEFAULT_TRACK, 2);
char testFileName[PATH_MAX];
- if (!createTemporaryFile("sixteen-to-eight", &testFileName))
+ if (!createTemporaryFile("sixteen-to-eight", testFileName))
{
fprintf(stderr, "Could not create temporary file.\n");
exit(EXIT_FAILURE);