1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-23 04:23:08 +00:00

gcc 2.95 requires us to be explicit about the return type of functions.

This commit is contained in:
Steve Price 1999-11-28 18:18:19 +00:00
parent e284d120cc
commit 3689fb2140
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=23473

11
audio/xcd/files/patch-aa Normal file
View File

@ -0,0 +1,11 @@
--- cdplayer.cc.orig Sat Nov 27 16:20:49 1999
+++ cdplayer.cc Sat Nov 27 16:24:02 1999
@@ -29,7 +29,7 @@
public:
button (char *s) {state=0; strcpy (name, s);}
~button () {}
- set (int i) {
+ void set (int i) {
if (state != i) {
state = i;
if (state == 0)