[Bf-blender-cvs] [ae648981471] master: Cleanup: fix bad comment separator

Sybren A. Stüvel noreply at git.blender.org
Thu Nov 19 11:10:41 CET 2020


Commit: ae648981471bc25d1454cbf6886c4baa674e9690
Author: Sybren A. Stüvel
Date:   Thu Nov 19 11:04:30 2020 +0100
Branches: master
https://developer.blender.org/rBae648981471bc25d1454cbf6886c4baa674e9690

Cleanup: fix bad comment separator

Replace `* /` with `*/` to actually end the comment. As it was, the code
compiled but caused an "`/*` in comment" warning.

No functional changes.

===================================================================

M	source/blender/editors/space_sequencer/sequencer_proxy.c

===================================================================

diff --git a/source/blender/editors/space_sequencer/sequencer_proxy.c b/source/blender/editors/space_sequencer/sequencer_proxy.c
index 060b6059faa..2d23520814a 100644
--- a/source/blender/editors/space_sequencer/sequencer_proxy.c
+++ b/source/blender/editors/space_sequencer/sequencer_proxy.c
@@ -47,9 +47,9 @@
 /* Own include. */
 #include "sequencer_intern.h"
 
-/*--------------------------------------------------------------------* /
-    /** \name Proxy Job Manager
-     * \{ */
+/*--------------------------------------------------------------------*/
+/** \name Proxy Job Manager
+ * \{ */
 
 typedef struct ProxyBuildJob {
   struct Main *main;



More information about the Bf-blender-cvs mailing list