diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-05-22 15:07:05 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-05-22 15:07:05 +0000 |
commit | abcbc229d7a94e903fe64b4381216af71e129472 (patch) | |
tree | 104b71f1205795568131a84424950c3f75e74c59 /audio/opmixer/files/patch-volset.cc | |
parent | Update to 0.13.0. (diff) |
namespace fix for GCC 3.x
PR: 48139
Submitted by: Volker Stolz (later by naddy)
Notes
Notes:
svn path=/head/; revision=81709
Diffstat (limited to '')
-rw-r--r-- | audio/opmixer/files/patch-volset.cc | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/audio/opmixer/files/patch-volset.cc b/audio/opmixer/files/patch-volset.cc new file mode 100644 index 000000000000..ae3d786bd7df --- /dev/null +++ b/audio/opmixer/files/patch-volset.cc @@ -0,0 +1,12 @@ +$FreeBSD$ + +--- volset.cc.orig Mon May 21 19:35:48 2001 ++++ volset.cc Thu May 22 15:00:39 2003 +@@ -22,6 +22,6 @@ + int pcmvol = atoi(argv[2]); + myMixer->SetLevel("vol",mainvol); + myMixer->SetLevel("pcm",pcmvol); +- std::cout << "Main : " << mainvol << " PCM : " << pcmvol << endl; ++ std::cout << "Main : " << mainvol << " PCM : " << pcmvol << std::endl; + }; + }; |