Commit 03d146ff authored by michael's avatar michael

Place { of the function where indent -kr wants it.

Also more consistent with the rest of the code.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20851 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 16c99fe6
......@@ -78,7 +78,8 @@ size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...)
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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment