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>2014-03-17 14:48:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-17 14:48:13 +0400
commit8480bb64ec7e5f367b914dc46e9c929945a6ebb0 (patch)
tree3c7a2982a001dd9efb9b99115454576906815637 /source/blender/editors/space_file
parent930765faa81efe3894e5476a59f5f3298da54ae4 (diff)
Code cleanup: style
Diffstat (limited to 'source/blender/editors/space_file')
-rw-r--r--source/blender/editors/space_file/file_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/file_ops.c b/source/blender/editors/space_file/file_ops.c
index 94f6174de65..4a298e183e6 100644
--- a/source/blender/editors/space_file/file_ops.c
+++ b/source/blender/editors/space_file/file_ops.c
@@ -494,7 +494,7 @@ static int bookmark_delete_exec(bContext *C, wmOperator *op)
if (RNA_struct_find_property(op->ptr, "index")) {
int index = RNA_int_get(op->ptr, "index");
- if ( (index > -1) && (index < nentries)) {
+ if ((index > -1) && (index < nentries)) {
char name[FILE_MAX];
fsmenu_remove_entry(fsmenu, FS_CATEGORY_BOOKMARKS, index);