diff utils.c @ 805:98783d518982 libavutil

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 57659b3ef05c
children 0795a743bda1
line wrap: on
line diff
--- a/utils.c	Fri Jan 01 12:28:18 2010 +0000
+++ b/utils.c	Sun Jan 03 14:31:25 2010 +0000
@@ -29,12 +29,12 @@
     return LIBAVUTIL_VERSION_INT;
 }
 
-const char * avutil_configuration(void)
+const char *avutil_configuration(void)
 {
     return FFMPEG_CONFIGURATION;
 }
 
-const char * avutil_license(void)
+const char *avutil_license(void)
 {
 #define LICENSE_PREFIX "libavutil license: "
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;