# HG changeset patch # User stefano # Date 1262529085 0 # Node ID a7aeae5a367b3137e249c08cbffa66010098f753 # Parent 38093ab40afe774144711aabc5f2d18c2830a95d Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg. diff -r 38093ab40afe -r a7aeae5a367b avformat.h --- 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 #include /* FILE */ diff -r 38093ab40afe -r a7aeae5a367b utils.c --- 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;