summaryrefslogtreecommitdiff
path: root/libavutil/opencl.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-01 13:01:17 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-04-01 13:01:17 +0200
commit76071322a32edc752b49c131fdb97f0608e0c3a0 (patch)
treefddfef970f069da6f9d9bcda8fe575bc68a7ad0e /libavutil/opencl.c
parent189cbc1a0357eff9ebda70d74f886f58d3d7d574 (diff)
opencl: fix double ;
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/opencl.c')
-rw-r--r--libavutil/opencl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/opencl.c b/libavutil/opencl.c
index dc3b859543..4ad39a88cc 100644
--- a/libavutil/opencl.c
+++ b/libavutil/opencl.c
@@ -332,7 +332,7 @@ static int init_opencl_env(GPUEnv *gpu_env, AVOpenCLExternalEnv *ext_opencl_env)
}
if (status != CL_SUCCESS) {
av_log(&openclutils, AV_LOG_ERROR, "Could not get OpenCL device ids: %s\n", opencl_errstr(status));
- ret = AVERROR(EINVAL);;
+ ret = AVERROR(EINVAL);
goto end;
}
if (num_devices)
@@ -354,7 +354,7 @@ static int init_opencl_env(GPUEnv *gpu_env, AVOpenCLExternalEnv *ext_opencl_env)
if (gpu_env->usr_spec_dev_info.dev_idx >= 0) {
if (num_devices < gpu_env->usr_spec_dev_info.dev_idx + 1) {
av_log(&openclutils, AV_LOG_ERROR, "Could not get OpenCL device idx in the user set platform\n");
- ret = AVERROR(EINVAL);;
+ ret = AVERROR(EINVAL);
goto end;
}
}