diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-28 17:08:04 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-28 17:08:04 +0000 |
commit | c6c3df07cdbcd744d5e7a5ffcb9e7d0d6c8c0134 (patch) | |
tree | efa536c83bdf7521a3a28aa18d499c97abea4fe1 /libvo | |
parent | 2c74f01a5fc49d76e9c0375075f47eee64f1cc15 (diff) |
warning fix:
vo_s3fb.c: In function 'enable':
vo_s3fb.c:131: warning: control reaches end of non-void function
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24270 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo')
-rw-r--r-- | libvo/vo_s3fb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/vo_s3fb.c b/libvo/vo_s3fb.c index e733ac9d1f..b311871e89 100644 --- a/libvo/vo_s3fb.c +++ b/libvo/vo_s3fb.c @@ -128,6 +128,7 @@ int enable() { free(v); v = NULL; } + return 0; } void disable() { |