Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2019-02-03 21:56:57 +0300
committerAntonioya <blendergit@gmail.com>2019-02-03 21:56:57 +0300
commit838a34324ac35ff7ffb722eca01814dcd5199599 (patch)
tree661976e82e231cc29e1b146757ef22a56c5bb21e
parent2672552cf7a7296be085d273aacc2505818cf9cc (diff)
GP: Fix compiler error
-rw-r--r--source/blender/editors/gpencil/gpencil_paint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/gpencil/gpencil_paint.c b/source/blender/editors/gpencil/gpencil_paint.c
index b24f6f445b9..7ef6afca1ab 100644
--- a/source/blender/editors/gpencil/gpencil_paint.c
+++ b/source/blender/editors/gpencil/gpencil_paint.c
@@ -1766,7 +1766,7 @@ static Brush *gp_get_default_eraser(Main *bmain, ToolSettings *ts)
}
/* helper to set default eraser and disable others */
-static Brush *gp_set_default_eraser(Main *bmain, Brush *brush_dft)
+static void gp_set_default_eraser(Main *bmain, Brush *brush_dft)
{
if (brush_dft == NULL) {
return;