changeset 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 3184397c9fdb
children 757914de10e1
files avutil.h utils.c
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/avutil.h	Fri Jan 01 12:28:18 2010 +0000
+++ b/avutil.h	Sun Jan 03 14:31:25 2010 +0000
@@ -56,12 +56,12 @@
 /**
  * Returns the libavutil build-time configuration.
  */
-const char * avutil_configuration(void);
+const char *avutil_configuration(void);
 
 /**
  * Returns the libavutil license.
  */
-const char * avutil_license(void);
+const char *avutil_license(void);
 
 #include "common.h"
 #include "mathematics.h"
--- 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;