Mercurial > libavformat.hg
changeset 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 | 2aecc666c976 |
files | avformat.h utils.c |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/avformat.h Fri Jan 01 23:56:09 2010 +0000 +++ b/avformat.h Sun Jan 03 14:31:25 2010 +0000 @@ -43,12 +43,12 @@ /** * Returns the libavformat build-time configuration. */ -const char * avformat_configuration(void); +const char *avformat_configuration(void); /** * Returns the libavformat license. */ -const char * avformat_license(void); +const char *avformat_license(void); #include <time.h> #include <stdio.h> /* FILE */
--- 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;