]> git.sesse.net Git - vlc/commitdiff
libvlc.h: move comments out of the code itself (including commas)
authorOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 8 Jun 2012 07:33:57 +0000 (09:33 +0200)
committerOlivier Aubert <olivier.aubert@liris.cnrs.fr>
Fri, 8 Jun 2012 07:34:12 +0000 (09:34 +0200)
include/vlc/libvlc.h

index 6f7d7a50881f6c3c4f35f96a119d86cbb4067483..94dbcacf01e4698a36cb5ce8088a12a90d5ee27d 100644 (file)
@@ -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 */
 };
 
 /**