From e8d92b1e6670dc69564088677c468184a45ed052 Mon Sep 17 00:00:00 2001 From: stefano Date: Sun, 3 Jan 2010 14:35:20 +0000 Subject: Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for the swscale_configuration() and swscale_license() functions, consistent with the rest of FFmpeg. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30180 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libswscale/swscale.c | 4 ++-- libswscale/swscale.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 12bc60850d..9c49054e8e 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -85,12 +85,12 @@ unsigned swscale_version(void) 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 --git a/libswscale/swscale.h b/libswscale/swscale.h index d940e82271..d4761d0692 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -51,12 +51,12 @@ unsigned swscale_version(void); /** * 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 -- cgit v1.2.3