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:
authorCampbell Barton <ideasman42@gmail.com>2013-06-28 20:37:39 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-28 20:37:39 +0400
commit5d413b523a92ee70245a43568cc350dd56fa42e4 (patch)
tree14163eb594e039d1e8c351b25ea91381d7682459 /source/blender/editors/space_script
parent86515e5086c833125409756cba51d7d0ec4de007 (diff)
fix for crash when setting the cursor in background mode.
Diffstat (limited to 'source/blender/editors/space_script')
-rw-r--r--source/blender/editors/space_script/script_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_script/script_edit.c b/source/blender/editors/space_script/script_edit.c
index ddf2bd27513..9df849410f4 100644
--- a/source/blender/editors/space_script/script_edit.c
+++ b/source/blender/editors/space_script/script_edit.c
@@ -129,7 +129,7 @@ static int script_reload_exec(bContext *C, wmOperator *op)
WM_event_add_notifier(C, NC_WINDOW, NULL);
return OPERATOR_FINISHED;
#else
- (void)C; /* unused */
+ (void)C, (void)op; /* unused */
return OPERATOR_CANCELLED;
#endif
}