# HG changeset patch # User stefano # Date 1262529320 0 # Node ID acc6ed68a38571345d98d2b85f048a933a3aab4c # Parent 28ca3af546f55d7f1496a979ce074b8068c2238a Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the swscale_configuration() and swscale_license() functions, consistent with the rest of FFmpeg. diff -r 28ca3af546f5 -r acc6ed68a385 libswscale/swscale.c --- a/libswscale/swscale.c Sun Jan 03 12:55:09 2010 +0000 +++ b/libswscale/swscale.c Sun Jan 03 14:35:20 2010 +0000 @@ -85,12 +85,12 @@ return LIBSWSCALE_VERSION_INT; } -const char * swscale_configuration(void) +const char *swscale_configuration(void) { return FFMPEG_CONFIGURATION; } -const char * swscale_license(void) +const char *swscale_license(void) { #define LICENSE_PREFIX "libswscale license: " return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1; diff -r 28ca3af546f5 -r acc6ed68a385 libswscale/swscale.h --- a/libswscale/swscale.h Sun Jan 03 12:55:09 2010 +0000 +++ b/libswscale/swscale.h Sun Jan 03 14:35:20 2010 +0000 @@ -51,12 +51,12 @@ /** * Returns the libswscale build-time configuration. */ -const char * swscale_configuration(void); +const char *swscale_configuration(void); /** * Returns the libswscale license. */ -const char * swscale_license(void); +const char *swscale_license(void); /* values for the flags, the stuff on the command line is different */ #define SWS_FAST_BILINEAR 1