diff utils.c @ 10764:4546d91de818 libavcodec

Prefer "*FUNC_NAME(" over "* FUNC_NAME(" for XXX_configuration() and XXX_license() functions, consistent with the rest of FFmpeg.
author stefano
date Sun, 03 Jan 2010 14:31:25 +0000
parents 7e316791ac7b
children c4e157b47af5
line wrap: on
line diff
--- a/utils.c	Sat Jan 02 17:48:08 2010 +0000
+++ b/utils.c	Sun Jan 03 14:31:25 2010 +0000
@@ -895,12 +895,12 @@
   return LIBAVCODEC_VERSION_INT;
 }
 
-const char * avcodec_configuration(void)
+const char *avcodec_configuration(void)
 {
     return FFMPEG_CONFIGURATION;
 }
 
-const char * avcodec_license(void)
+const char *avcodec_license(void)
 {
 #define LICENSE_PREFIX "libavcodec license: "
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;