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 /libavcodec/utils.c | |
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 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index d91cbc0428..99c97c1895 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -895,12 +895,12 @@ unsigned avcodec_version( void ) return LIBAVCODEC_VERSION_INT; } -const char * avcodec_configuration(void) +const char *avcodec_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * avcodec_license(void) +const char *avcodec_license(void) { #define LICENSE_PREFIX "libavcodec license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; |