summaryrefslogtreecommitdiffstats
path: root/video/mp_image.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-06-17 23:30:16 +0200
committerwm4 <wm4@nowhere>2014-06-17 23:30:27 +0200
commita28e2a7432f68e4a5db96cce8cbaa859327c4527 (patch)
tree90dd1b68bbf99814ac38fbb92d98e5ca51858ebb /video/mp_image.c
parentefa6b09b65f8c87a18745352777225adef7dbfc0 (diff)
downloadmpv-a28e2a7432f68e4a5db96cce8cbaa859327c4527.tar.bz2
mpv-a28e2a7432f68e4a5db96cce8cbaa859327c4527.tar.xz
video: correct spelling: mp_image_params_equals -> mp_image_params_equal
The type is struct mp_image_params, so the "params" should have a "s". "equals" shouldn't, because it's plural for 2 params. Important.
Diffstat (limited to 'video/mp_image.c')
-rw-r--r--video/mp_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/mp_image.c b/video/mp_image.c
index 76d6c1ab97..85638e9fd1 100644
--- a/video/mp_image.c
+++ b/video/mp_image.c
@@ -477,8 +477,8 @@ bool mp_image_params_valid(const struct mp_image_params *p)
return true;
}
-bool mp_image_params_equals(const struct mp_image_params *p1,
- const struct mp_image_params *p2)
+bool mp_image_params_equal(const struct mp_image_params *p1,
+ const struct mp_image_params *p2)
{
return p1->imgfmt == p2->imgfmt &&
p1->w == p2->w && p1->h == p2->h &&