summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--frontend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend.c b/frontend.c
index 6ab5967a..fa2b620f 100644
--- a/frontend.c
+++ b/frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend.c,v 1.91 2010-11-17 13:58:50 phintuka Exp $
+ * $Id: frontend.c,v 1.92 2010-11-17 13:59:22 phintuka Exp $
*
*/
@@ -290,8 +290,8 @@ bool cXinelibThread::IsReady(void)
void cXinelibThread::SetVolume(int NewVolume)
{
m_Volume = NewVolume;
- cString str = cString::sprintf("VOLUME %d%s", NewVolume * 100 / 255,
- xc.sw_volume_control ? " SW" : "");
+ cString str = cString::sprintf("VOLUME %d%s", NewVolume * 100 / 255,
+ xc.sw_volume_control ? " SW" : "");
Xine_Control(str);
}