diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-01-03 14:31:25 +0000 |
commit | 41600690673d6e49026c3309c708d6da17c603c6 (patch) | |
tree | 48ec152b08d9c23f95546ac413083902f26f1abd /libpostproc | |
parent | 8040c3b25085999042fe97763bc7367f05898599 (diff) | |
download | ffmpeg-41600690673d6e49026c3309c708d6da17c603c6.tar.gz |
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
XXX_license() functions, consistent with the rest of FFmpeg.
Originally committed as revision 21005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 4 | ||||
-rw-r--r-- | libpostproc/postprocess.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 9bb9468311..04c1fa8bd3 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -92,12 +92,12 @@ unsigned postproc_version(void) return LIBPOSTPROC_VERSION_INT; } -const char * postproc_configuration(void) +const char *postproc_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * postproc_license(void) +const char *postproc_license(void) { #define LICENSE_PREFIX "libpostproc license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; diff --git a/libpostproc/postprocess.h b/libpostproc/postprocess.h index 5f23bb240f..6c38eb3427 100644 --- a/libpostproc/postprocess.h +++ b/libpostproc/postprocess.h @@ -51,12 +51,12 @@ unsigned postproc_version(void); /** * Returns the libpostproc build-time configuration. */ -const char * postproc_configuration(void); +const char *postproc_configuration(void); /** * Returns the libpostproc license. */ -const char * postproc_license(void); +const char *postproc_license(void); #define PP_QUALITY_MAX 6 |