diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 16:07:46 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-11 16:07:46 +0200 |
commit | fb78b94c3a007101b7deebdf971c2d95facc5bba (patch) | |
tree | 463ae40ad6dd9535dd6f2cf95206497bab36a87d | |
parent | 0a95449d2fe058a5ccc4bf046f4c23ce76d96c27 (diff) | |
download | ffmpeg-fb78b94c3a007101b7deebdf971c2d95facc5bba.tar.gz |
cmdutils_common_opts: fix indention of #if
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | cmdutils_common_opts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdutils_common_opts.h b/cmdutils_common_opts.h index 878c7488b6..b57abaf618 100644 --- a/cmdutils_common_opts.h +++ b/cmdutils_common_opts.h @@ -19,6 +19,6 @@ { "report" , 0, {(void*)opt_report}, "generate a report" }, { "max_alloc" , HAS_ARG, {.func_arg = opt_max_alloc}, "set maximum size of a single allocated block", "bytes" }, { "cpuflags" , HAS_ARG | OPT_EXPERT, {.func_arg = opt_cpuflags}, "force specific cpu flags", "flags" }, - #if CONFIG_OPENCL +#if CONFIG_OPENCL { "opencl_options", HAS_ARG, {.func_arg = opt_opencl}, "set OpenCL environment options" }, - #endif +#endif |