From 37026b12ec1047dd5f4637ad281f108a7963af83 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 5 Feb 2014 22:36:15 +1100 Subject: Code cleanup: use bool for static methods --- source/blender/avi/intern/avi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/avi') diff --git a/source/blender/avi/intern/avi.c b/source/blender/avi/intern/avi.c index 7bfe84ebfa7..a423c874adf 100644 --- a/source/blender/avi/intern/avi.c +++ b/source/blender/avi/intern/avi.c @@ -141,7 +141,7 @@ static int fcc_get_stream(int fcc) return 10 * (fccs[0] - '0') + (fccs[1] - '0'); } -static int fcc_is_data(int fcc) +static bool fcc_is_data(int fcc) { char fccs[4]; -- cgit v1.2.3