updated on Thu Jan 26 00:18:00 UTC 2012
[aur-mirror.git] / sidplay2-alsa / sidplay2-gcc44.patch
blobe604689f5f6077f40a8f4a290a35cd8d404662a9
1 --- src/audio/AudioBase.h 2001/11/16 19:34:29 1.4
2 +++ src/audio/AudioBase.h 2008/03/02 22:42:51 1.5
3 @@ -16,6 +16,9 @@
4 ***************************************************************************/
5 /***************************************************************************
6 * $Log: AudioBase.h,v $
7 + * Revision 1.5 2008/03/02 22:42:51 s_a_white
8 + * Fix depreciated const char * warnings in Linux
9 + *
10 * Revision 1.4 2001/11/16 19:34:29 s_a_white
11 * Added extension to be used for file audio devices.
13 --- src/args.cpp.orig 2009-05-31 20:55:18.100205456 +0200
14 +++ src/args.cpp 2004-05-06 01:49:20.000000000 +0200
15 @@ -102,7 +102,7 @@
16 if (*str == '\0')
17 return false;
19 - sep = strstr (str, ":");
20 + sep = strstr ((char*)str, ":");
21 if (!sep)
22 { // User gave seconds
23 _time = atoi (str);