# HG changeset patch # User michael # Date 1260753302 0 # Node ID 0f0768396e60379387dd59792e2c61e1f4f62b4b # Parent 197e6e41f46f0cdb513ed9196fde1d713ee9f16a Place { of the function where indent -kr wants it. Also more consistent with the rest of the code. diff -r 197e6e41f46f -r 0f0768396e60 avstring.c --- 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;