File: 0001-Fix-function-prototype.patch

package info (click to toggle)
shine 3.1.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,500 kB
  • sloc: ansic: 2,264; javascript: 221; makefile: 51; sh: 2
file content (21 lines) | stat: -rw-r--r-- 553 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Sebastian Ramacher <sramacher@debian.org>
Date: Sat, 20 Sep 2025 12:08:22 +0200
Subject: Fix function prototype

---
 src/lib/l3mdct.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/l3mdct.h b/src/lib/l3mdct.h
index 1288259..b374fd4 100644
--- a/src/lib/l3mdct.h
+++ b/src/lib/l3mdct.h
@@ -1,7 +1,7 @@
 #ifndef shine_MDCT_H
 #define shine_MDCT_H
 
-void shine_mdct_initialise();
+void shine_mdct_initialise(shine_global_config *config);
 void shine_mdct_sub(shine_global_config *config, int stride);
 
 #endif