[vlc-commits] [Git][videolan/vlc][master] vlc_aout: don't return void in public header

Jean-Baptiste Kempf (@jbk) gitlab at videolan.org
Sat Jul 9 22:45:28 UTC 2022



Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC


Commits:
456bed4a by Steve Lhomme at 2022-07-09T22:24:49+00:00
vlc_aout: don't return void in public header

Some compilers don't like that.

- - - - -


1 changed file:

- include/vlc_aout.h


Changes:

=====================================
include/vlc_aout.h
=====================================
@@ -316,7 +316,7 @@ struct audio_output
 static inline void aout_TimingReport(audio_output_t *aout, vlc_tick_t system_ts,
                                      vlc_tick_t audio_ts)
 {
-    return aout->events->timing_report(aout, system_ts, audio_ts);
+    aout->events->timing_report(aout, system_ts, audio_ts);
 }
 
 /**



View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/456bed4a6884456500bf6d54b60d2828519f4872

-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/456bed4a6884456500bf6d54b60d2828519f4872
You're receiving this email because of your account on code.videolan.org.


VideoLAN code repository instance


More information about the vlc-commits mailing list