Fix an issue with an incorrectly placed #endif

Fri, 12 Aug 2016 13:37:10 -0500

author
Gary Kramlich <grim@reaperworld.com>
date
Fri, 12 Aug 2016 13:37:10 -0500
changeset 37897
b5b905b7d4e5
parent 37894
1cf07b94c6ca
child 37898
3c9fc84490a9
child 37944
e42e19eba593

Fix an issue with an incorrectly placed #endif

libpurple/mediamanager.c file | annotate | diff | comparison | revisions
--- a/libpurple/mediamanager.c	Thu Jul 07 23:39:50 2016 -0500
+++ b/libpurple/mediamanager.c	Fri Aug 12 13:37:10 2016 -0500
@@ -29,7 +29,7 @@
 #ifdef USE_GSTREAMER
 #include "marshallers.h"
 #include "media-gst.h"
-#endif
+#endif /* USE_GSTREAMER */
 
 #ifdef USE_VV
 #include <media/backend-fs2.h>
@@ -39,6 +39,7 @@
 #ifdef HAVE_MEDIA_APPLICATION
 #include <gst/app/app.h>
 #endif
+#endif /* USE_VV */
 
 /** @copydoc _PurpleMediaOutputWindow */
 typedef struct _PurpleMediaOutputWindow PurpleMediaOutputWindow;
@@ -136,7 +137,6 @@
 	LAST_SIGNAL
 };
 static guint purple_media_manager_signals[LAST_SIGNAL] = {0};
-#endif
 
 GType
 purple_media_manager_get_type()

mercurial