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-15 01:16:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-15 01:16:35 +0300
commiteb53b0fb4ce56cc9356127613f7e32334b00f08f (patch)
treea977383f521f83d39a79f17be0c8a46638ae85ff /source/blender/editors/space_file/filesel.c
parentaf66a4630dde71b1576e0db0ef2ae284e71e26d5 (diff)
quiet warning for GCC
Diffstat (limited to 'source/blender/editors/space_file/filesel.c')
-rw-r--r--source/blender/editors/space_file/filesel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/filesel.c b/source/blender/editors/space_file/filesel.c
index dce39ad8a1a..305598e7a0b 100644
--- a/source/blender/editors/space_file/filesel.c
+++ b/source/blender/editors/space_file/filesel.c
@@ -257,7 +257,7 @@ int ED_fileselect_layout_numfiles(FileLayout* layout, struct ARegion *ar)
}
}
-static int is_inside(x,y, cols,rows)
+static int is_inside(int x, int y, int cols, int rows)
{
return ( (x >= 0) && (x<cols) && (y>=0) && (y<rows) );
}