File: 09_fix_build_gcc15.patch

package info (click to toggle)
gnujump 1.0.8-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,412 kB
  • sloc: sh: 11,588; ansic: 7,778; makefile: 116; sed: 16
file content (22 lines) | stat: -rw-r--r-- 539 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
Description: Fix build with gcc-15
Author: Matheus Polkorny <mpolkorny@gmail.com>
---
 src/game.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/game.h b/src/game.h
index fc75acc..fd511a8 100644
--- a/src/game.h
+++ b/src/game.h
@@ -207,9 +207,9 @@ void continueTimer (L_timer * time);
 
 int yesNoQuestion (data_t * gfx, game_t * game, char *text);
 
-int updateInput ();
+int updateInput (game_t * game);
 
-void freeGame ();
+void freeGame (game_t * game);
 
 void drawGame (data_t * gfx, game_t * game);