Mercurial > libavformat.hg
diff utils.c @ 5491:a7aeae5a367b libavformat
Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and
XXX_license() functions, consistent with the rest of FFmpeg.
author | stefano |
---|---|
date | Sun, 03 Jan 2010 14:31:25 +0000 |
parents | 38093ab40afe |
children | 9cc93fd4bb72 |
line wrap: on
line diff
--- a/utils.c Fri Jan 01 23:56:09 2010 +0000 +++ b/utils.c Sun Jan 03 14:31:25 2010 +0000 @@ -41,12 +41,12 @@ return LIBAVFORMAT_VERSION_INT; } -const char * avformat_configuration(void) +const char *avformat_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * avformat_license(void) +const char *avformat_license(void) { #define LICENSE_PREFIX "libavformat license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;