changeset 801:0f0768396e60 libavutil

Place { of the function where indent -kr wants it. Also more consistent with the rest of the code.
author michael
date Mon, 14 Dec 2009 01:15:02 +0000
parents 197e6e41f46f
children 485faa6e1728
files avstring.c
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/avstring.c	Sun Dec 13 18:42:39 2009 +0000
+++ b/avstring.c	Mon Dec 14 01:15:02 2009 +0000
@@ -78,7 +78,8 @@
     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;