Browse code

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

Originally committed as revision 20851 to svn://svn.ffmpeg.org/ffmpeg/trunk

Michael Niedermayer authored on 2009/12/14 10:15:02
Showing 1 changed files
... ...
@@ -78,7 +78,8 @@ size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...)
78 78
     return len;
79 79
 }
80 80
 
81
-char *av_d2str(double d){
81
+char *av_d2str(double d)
82
+{
82 83
     char *str= av_malloc(16);
83 84
     if(str) snprintf(str, 16, "%f", d);
84 85
     return str;