# HG changeset patch # User stefano # Date 1262529085 0 # Node ID 63eddcff3509f86ed1d3a3f219f28722a64085d4 # Parent 885c7548fb5e030326d0fc7f692a40697154cb21 Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg. diff -r 885c7548fb5e -r 63eddcff3509 postprocess.c --- a/postprocess.c Wed Nov 18 17:15:17 2009 +0000 +++ b/postprocess.c Sun Jan 03 14:31:25 2010 +0000 @@ -92,12 +92,12 @@ return LIBPOSTPROC_VERSION_INT; } -const char * postproc_configuration(void) +const char *postproc_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * postproc_license(void) +const char *postproc_license(void) { #define LICENSE_PREFIX "libpostproc license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; diff -r 885c7548fb5e -r 63eddcff3509 postprocess.h --- a/postprocess.h Wed Nov 18 17:15:17 2009 +0000 +++ b/postprocess.h Sun Jan 03 14:31:25 2010 +0000 @@ -51,12 +51,12 @@ /** * Returns the libpostproc build-time configuration. */ -const char * postproc_configuration(void); +const char *postproc_configuration(void); /** * Returns the libpostproc license. */ -const char * postproc_license(void); +const char *postproc_license(void); #define PP_QUALITY_MAX 6