Fix whitespace issues.

This commit is contained in:
Mikkel Oscar Lyderik 2016-01-05 23:42:40 +01:00
parent 2e0ef533f2
commit 364e37a1eb
6 changed files with 20 additions and 20 deletions

View file

@ -72,7 +72,7 @@ void grab_and_apply_movie_magic(const char *file, const char *output,
"-video_size %dx%d -pixel_format argb "
"-i pipe:0 -r %d -vf vflip %s";
char *cmd = malloc(strlen(fmt) - 8 /*args*/
+ numlen(width) + numlen(height) + numlen(framerate) * 2
+ numlen(width) + numlen(height) + numlen(framerate) * 2
+ strlen(file) + 1);
sprintf(cmd, fmt, framerate, width, height, framerate, file);