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>2011-03-21 06:22:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-21 06:22:33 +0300
commit6031744c3592e1ae2f3d0d0c27616ee754b72546 (patch)
treea8b4b48afb279279edd180e5b52be0570901df29 /source/blender/editors/space_file/filelist.c
parent8908d55907e5cb7aa916f8091487bae406c42822 (diff)
fix for use of un-initialized pointers in file_sfile_to_operator(...) & remove unused vars.
Diffstat (limited to 'source/blender/editors/space_file/filelist.c')
-rw-r--r--source/blender/editors/space_file/filelist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index 1292cc68f65..da8226de516 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -948,7 +948,7 @@ void filelist_select(struct FileList* filelist, FileSelection* sel, FileSelType
}
}
-int filelist_is_selected(struct FileList* filelist, int index, unsigned int flag, FileCheckType check)
+int filelist_is_selected(struct FileList* filelist, int index, FileCheckType check)
{
struct direntry* file = filelist_file(filelist, index);
if (!file) {