diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-05-26 18:57:26 +0200 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-05-28 10:03:37 -0400 |
commit | b8e893399ff8755721dc117695ec5ff183c1e07b (patch) | |
tree | 9fb1961a9d5ae9f2d1c4e00fd170d2f56d97e477 /libswscale/colorspace-test.c | |
parent | 7d8c17b5f62bc14d5f7c7c792630b23240b47eec (diff) | |
download | ffmpeg-b8e893399ff8755721dc117695ec5ff183c1e07b.tar.gz |
sws: replace all long with int.
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'libswscale/colorspace-test.c')
-rw-r--r-- | libswscale/colorspace-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/colorspace-test.c b/libswscale/colorspace-test.c index 4ed9164323..07c1cbd803 100644 --- a/libswscale/colorspace-test.c +++ b/libswscale/colorspace-test.c @@ -52,7 +52,7 @@ int main(int argc, char **argv) int src_bpp; int dst_bpp; const char *name; - void (*func)(const uint8_t *src, uint8_t *dst, long src_size); + void (*func)(const uint8_t *src, uint8_t *dst, int src_size); } func_info[] = { FUNC(2, 2, rgb15to16), FUNC(2, 3, rgb15to24), |