[vlc-devel] commit: signals: Remove a false warning about no return value. (Pierre d' Herbemont )
git version control
git at videolan.org
Wed Aug 26 00:34:16 CEST 2009
vlc | branch: master | Pierre d'Herbemont <pdherbemont at free.fr> | Wed Aug 26 00:32:04 2009 +0200| [8510313d246ed6aeff244b5414f088309077ea95] | committer: Pierre d'Herbemont
signals: Remove a false warning about no return value.
This was reverted before. Yet, there is no use keeping that false warning, or wait until gcc is fixed.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=8510313d246ed6aeff244b5414f088309077ea95
---
modules/control/signals.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/modules/control/signals.c b/modules/control/signals.c
index 7acf926..69650e1 100644
--- a/modules/control/signals.c
+++ b/modules/control/signals.c
@@ -118,4 +118,5 @@ static void *SigThread (void *data)
pthread_sigmask (SIG_UNBLOCK, &set, NULL);
for (;;)
pause ();
+ return NULL;
}
More information about the vlc-devel
mailing list