diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2013-06-04 08:25:12 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2013-06-04 08:25:12 +0000 |
commit | 233099396b0bdaab747a6cf311fd97f7fafe87e8 (patch) | |
tree | c65dd685e405c386e088c18ed859e83413a5696b /audio/xcd/files/patch-cdplayer.cc | |
parent | - Fix DOCSDIR layout (diff) |
- Fix build with clang
PR: 179214
Submitted by: Ports Fury
Diffstat (limited to 'audio/xcd/files/patch-cdplayer.cc')
-rw-r--r-- | audio/xcd/files/patch-cdplayer.cc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/audio/xcd/files/patch-cdplayer.cc b/audio/xcd/files/patch-cdplayer.cc new file mode 100644 index 000000000000..ec0923112126 --- /dev/null +++ b/audio/xcd/files/patch-cdplayer.cc @@ -0,0 +1,20 @@ +--- 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) +@@ -90,7 +90,7 @@ + #define S(t) toc_buffer[t].addr.msf.second + #define F(t) toc_buffer[t].addr.msf.frame + +-main (int argc, char **argv) ++int main (int argc, char **argv) + { + char dev[20], line[50]; + int i; |