File: fix-gcc15-build.patch

package info (click to toggle)
libsession-token-perl 1.503-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 196 kB
  • sloc: ansic: 166; perl: 90; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 626 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
22
23
24
From: Victor Seva <vseva@debian.org>
Date: Fri, 12 Sep 2025 09:28:39 +0200
Subject: fix gcc15 build

---
 rand.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/rand.h b/rand.h
index 73f6e3e..dbe12fe 100644
--- a/rand.h
+++ b/rand.h
@@ -36,9 +36,9 @@ typedef  struct randctx  randctx;
  If (flag==TRUE), then use the contents of randrsl[0..RANDSIZ-1] as the seed.
 ------------------------------------------------------------------------------
 */
-void randinit(/*_ randctx *r, word flag _*/);
+void randinit(randctx *r, word flag);
 
-void isaac(/*_ randctx *r _*/);
+void isaac(randctx *r);
 
 
 /*