summaryrefslogtreecommitdiffstats
path: root/libswscale/swscale.c
diff options
context:
space:
mode:
authorstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:35:20 +0000
committerstefano <stefano@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-03 14:35:20 +0000
commite8d92b1e6670dc69564088677c468184a45ed052 (patch)
tree5523b800e376c574746d348fcddd0ac38c7dd7b3 /libswscale/swscale.c
parentf06aa83a83f9d8a1a41424c37b115d0b9491ac8d (diff)
downloadmpv-e8d92b1e6670dc69564088677c468184a45ed052.tar.bz2
mpv-e8d92b1e6670dc69564088677c468184a45ed052.tar.xz
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
Diffstat (limited to 'libswscale/swscale.c')
-rw-r--r--libswscale/swscale.c4
1 files changed, 2 insertions, 2 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;