# HG changeset patch # User stefano # Date 1262529085 0 # Node ID 98783d51898247e7fe7e274036ac51401295bbb3 # Parent 3184397c9fdbe514d845ba7613e870e8b2c12e13 Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg. diff -r 3184397c9fdb -r 98783d518982 avutil.h --- a/avutil.h Fri Jan 01 12:28:18 2010 +0000 +++ b/avutil.h Sun Jan 03 14:31:25 2010 +0000 @@ -56,12 +56,12 @@ /** * Returns the libavutil build-time configuration. */ -const char * avutil_configuration(void); +const char *avutil_configuration(void); /** * Returns the libavutil license. */ -const char * avutil_license(void); +const char *avutil_license(void); #include "common.h" #include "mathematics.h" diff -r 3184397c9fdb -r 98783d518982 utils.c --- a/utils.c Fri Jan 01 12:28:18 2010 +0000 +++ b/utils.c Sun Jan 03 14:31:25 2010 +0000 @@ -29,12 +29,12 @@ return LIBAVUTIL_VERSION_INT; } -const char * avutil_configuration(void) +const char *avutil_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * avutil_license(void) +const char *avutil_license(void) { #define LICENSE_PREFIX "libavutil license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;