]> git.sesse.net Git - vlc/commitdiff
libvlc_priv_t: fix padding.
authorRémi Duraffort <ivoire@videolan.org>
Tue, 22 Dec 2009 13:45:51 +0000 (14:45 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Mon, 28 Dec 2009 13:18:28 +0000 (14:18 +0100)
src/libvlc.h

index 3d4022daf8b82eb674613a3184c2d696a885457e..629a28fe7dd3dcdf41047037fc1438c8e458e034 100644 (file)
@@ -207,15 +207,15 @@ typedef struct libvlc_priv_t
     /* Messages */
     msg_bank_t         msg_bank;    ///< The message bank
     int                i_verbose;   ///< info messages
-    bool               b_color;     ///< color messages?
     vlc_dictionary_t   msg_enabled_objects; ///< Enabled objects
+    bool               b_color;     ///< color messages?
     bool               msg_all_objects_enabled; ///< Should we print all objects?
 
     /* Timer stats */
+    bool               b_stats;     ///< Whether to collect stats
     vlc_mutex_t        timer_lock;  ///< Lock to protect timers
     counter_t        **pp_timers;   ///< Array of all timers
     int                i_timers;    ///< Number of timers
-    bool               b_stats;     ///< Whether to collect stats
 
     /* Singleton objects */
     module_t          *p_memcpy_module;  ///< Fast memcpy plugin used