diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 12bc60850d38860107dc9b43f7f8a4f63d5c6370..9c49054e8e3bc0e6bcb60de3b5c81225d9ba9a4c 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 d940e8227134748c48a2941726e73a276aadecff..d4761d0692d1c147cbde69b737181c793d6d3abc 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