[FFmpeg-cvslog] r20851 - trunk/libavutil/avstring.c

michael subversion
Mon Dec 14 02:15:02 CET 2009


Author: michael
Date: Mon Dec 14 02:15:02 2009
New Revision: 20851

Log:
Place { of the function where indent -kr wants it.
Also more consistent with the rest of the code.

Modified:
   trunk/libavutil/avstring.c

Modified: trunk/libavutil/avstring.c
==============================================================================
--- trunk/libavutil/avstring.c	Mon Dec 14 00:39:20 2009	(r20850)
+++ trunk/libavutil/avstring.c	Mon Dec 14 02:15:02 2009	(r20851)
@@ -78,7 +78,8 @@ size_t av_strlcatf(char *dst, size_t siz
     return len;
 }
 
-char *av_d2str(double d){
+char *av_d2str(double d)
+{
     char *str= av_malloc(16);
     if(str) snprintf(str, 16, "%f", d);
     return str;



More information about the ffmpeg-cvslog mailing list