slackbuilds_ponce/games/speed-dreams/speed-dreams-params-conversion.patch
Matteo Bernardini 02605cc35e games/speed-dreams: Patch for the newer gcc.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
2021-04-17 23:59:09 -05:00

22 lines
729 B
Diff

--- src/libs/tgf/params.cpp.orig 2017-02-14 10:32:38.701066427 +0100
+++ src/libs/tgf/params.cpp 2017-02-14 10:33:19.425879383 +0100
@@ -3809,7 +3809,7 @@
if( lastSlash != NULL && key )
{
*key = lastSlash + 1;
- lastSlash = '\0';
+ lastSlash = NULL;
}
else if( key )
{
--- src/libs/tgfclient/openalmusicplayer.cpp.orig 2017-02-14 13:14:10.870735828 +0100
+++ src/libs/tgfclient/openalmusicplayer.cpp 2017-02-14 13:15:11.592684153 +0100
@@ -171,7 +171,7 @@
{
char pcm[BUFFERSIZE];
int size = 0;
- const char* error = '\0';
+ const char* error = NULL;
if (!_stream->read(pcm, BUFFERSIZE, &size, error)) {
GfLogError("OpenALMusicPlayer: Stream read error: %s\n", error);