summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2010-01-16 20:55:52 +0000
committerphintuka <phintuka>2010-01-16 20:55:52 +0000
commitc95451b3d919f5ed7ac0afa2ab1684a9efaf24ba (patch)
tree60f9cdb9e26731a34e8e5bd9db7a08a9ba0a74a0
parentdcade9370b1949785179f53be45c34241d9c9e4a (diff)
downloadxineliboutput-c95451b3d919f5ed7ac0afa2ab1684a9efaf24ba.tar.gz
xineliboutput-c95451b3d919f5ed7ac0afa2ab1684a9efaf24ba.tar.bz2
Fixed return value
-rw-r--r--frontend.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend.h b/frontend.h
index 9c793f24..f964b606 100644
--- a/frontend.h
+++ b/frontend.h
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: frontend.h,v 1.33 2010-01-16 20:55:05 phintuka Exp $
+ * $Id: frontend.h,v 1.34 2010-01-16 20:55:52 phintuka Exp $
*
*/
@@ -53,7 +53,7 @@ class cXinelibThread : public cThread, public cListObject
virtual void TrickSpeed(int Speed, bool Backwards);
// Sync(): wait until all pending control messages have been processed by the client
- virtual void Sync(void) { return Xine_Control("SYNC"); };
+ virtual void Sync(void) { Xine_Control("SYNC"); };
protected:
int Xine_Control(const char *cmd, const char *p1);