From a416715372bb51bcdc1d05426afbf5e909b5984a Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Sat, 23 Jan 2016 16:35:32 -0500 Subject: Revert "s/numlen/log10/g" This reverts commit 038bb8cc7c4dee77f8ee4ba3ac1ffc47409b2370. --- swaygrab/CMakeLists.txt | 1 - swaygrab/main.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'swaygrab') diff --git a/swaygrab/CMakeLists.txt b/swaygrab/CMakeLists.txt index 9bd06c08..9035ac8b 100644 --- a/swaygrab/CMakeLists.txt +++ b/swaygrab/CMakeLists.txt @@ -10,7 +10,6 @@ target_link_libraries(swaygrab sway-common ${JSONC_LIBRARIES} rt - m ) install( diff --git a/swaygrab/main.c b/swaygrab/main.c index b944222c..82d623e7 100644 --- a/swaygrab/main.c +++ b/swaygrab/main.c @@ -39,7 +39,7 @@ void grab_and_apply_magick(const char *file, const char *output, const char *fmt = "convert -depth 8 -size %dx%d+0 rgba:- -flip %s"; char *cmd = malloc(strlen(fmt) - 6 /*args*/ - + log10(width) + 1 + log10(height) + 1 + strlen(file) + 1); + + numlen(width) + numlen(height) + strlen(file) + 1); sprintf(cmd, fmt, width, height, file); FILE *f = popen(cmd, "w"); @@ -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*/ - + log10(width) + 1 + log10(height) + 1 + log10(framerate) + 1 * 2 + + numlen(width) + numlen(height) + numlen(framerate) * 2 + strlen(file) + 1); sprintf(cmd, fmt, framerate, width, height, framerate, file); -- cgit v1.2.3-54-g00ecf