Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui 2019-02-20 01:45:34 +00:00
parent 57c5fcab91
commit a5e3837f6d
No known key found for this signature in database
GPG Key ID: 37C999F617EA1A47
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ parse_blur_kern(const char *src, const char **endptr, bool *hasneg) {
goto err1; goto err1;
} }
if (!(width % 2 && height % 2)) { if (!(width % 2 && height % 2)) {
log_error("Blur kernel idth/height must be odd."); log_error("Blur kernel width/height must be odd.");
goto err1; goto err1;
} }
if (width > 16 || height > 16) if (width > 16 || height > 16)