vlc | branch: master | Olivier Aubert <[email protected]> | Fri Jun 8 09:33:57 2012 +0200| [88ade5760aeb2ae4710b032ff9c9c36130a2246f] | committer: Olivier Aubert
libvlc.h: move comments out of the code itself (including commas) > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=88ade5760aeb2ae4710b032ff9c9c36130a2246f --- include/vlc/libvlc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/vlc/libvlc.h b/include/vlc/libvlc.h index 6f7d7a5..94dbcac 100644 --- a/include/vlc/libvlc.h +++ b/include/vlc/libvlc.h @@ -326,10 +326,10 @@ LIBVLC_API const char * libvlc_event_type_name( libvlc_event_type_t event_type ) */ enum libvlc_log_level { - LIBVLC_DEBUG=0 /**< Debug message */, - LIBVLC_NOTICE=2 /**< Important informational message */, - LIBVLC_WARNING=3 /**< Warning (potential error) message */, - LIBVLC_ERROR=4 /**< Error message */, + LIBVLC_DEBUG=0, /**< Debug message */ + LIBVLC_NOTICE=2, /**< Important informational message */ + LIBVLC_WARNING=3, /**< Warning (potential error) message */ + LIBVLC_ERROR=4 /**< Error message */ }; /** _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
