diff postprocess.c @ 131:63eddcff3509 libpostproc

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 885c7548fb5e
children 0397ed4317ef
line wrap: on
line diff
--- a/postprocess.c	Wed Nov 18 17:15:17 2009 +0000
+++ b/postprocess.c	Sun Jan 03 14:31:25 2010 +0000
@@ -92,12 +92,12 @@
     return LIBPOSTPROC_VERSION_INT;
 }
 
-const char * postproc_configuration(void)
+const char *postproc_configuration(void)
 {
     return FFMPEG_CONFIGURATION;
 }
 
-const char * postproc_license(void)
+const char *postproc_license(void)
 {
 #define LICENSE_PREFIX "libpostproc license: "
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;