aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2016-01-23 16:35:32 -0500
committerLibravatar Drew DeVault <sir@cmpwn.com>2016-01-23 16:35:32 -0500
commita416715372bb51bcdc1d05426afbf5e909b5984a (patch)
tree3b5239943a68a0b74194aba4baa642236e54dc9e /swaygrab
parents/numlen/log10/g (diff)
downloadsway-a416715372bb51bcdc1d05426afbf5e909b5984a.tar.gz
sway-a416715372bb51bcdc1d05426afbf5e909b5984a.tar.zst
sway-a416715372bb51bcdc1d05426afbf5e909b5984a.zip
Revert "s/numlen/log10/g"
Diffstat (limited to 'swaygrab')
-rw-r--r--swaygrab/CMakeLists.txt1
-rw-r--r--swaygrab/main.c4
2 files changed, 2 insertions, 3 deletions
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
10 sway-common 10 sway-common
11 ${JSONC_LIBRARIES} 11 ${JSONC_LIBRARIES}
12 rt 12 rt
13 m
14) 13)
15 14
16install( 15install(
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,
39 39
40 const char *fmt = "convert -depth 8 -size %dx%d+0 rgba:- -flip %s"; 40 const char *fmt = "convert -depth 8 -size %dx%d+0 rgba:- -flip %s";
41 char *cmd = malloc(strlen(fmt) - 6 /*args*/ 41 char *cmd = malloc(strlen(fmt) - 6 /*args*/
42 + log10(width) + 1 + log10(height) + 1 + strlen(file) + 1); 42 + numlen(width) + numlen(height) + strlen(file) + 1);
43 sprintf(cmd, fmt, width, height, file); 43 sprintf(cmd, fmt, width, height, file);
44 44
45 FILE *f = popen(cmd, "w"); 45 FILE *f = popen(cmd, "w");
@@ -72,7 +72,7 @@ void grab_and_apply_movie_magic(const char *file, const char *output,
72 "-video_size %dx%d -pixel_format argb " 72 "-video_size %dx%d -pixel_format argb "
73 "-i pipe:0 -r %d -vf vflip %s"; 73 "-i pipe:0 -r %d -vf vflip %s";
74 char *cmd = malloc(strlen(fmt) - 8 /*args*/ 74 char *cmd = malloc(strlen(fmt) - 8 /*args*/
75 + log10(width) + 1 + log10(height) + 1 + log10(framerate) + 1 * 2 75 + numlen(width) + numlen(height) + numlen(framerate) * 2
76 + strlen(file) + 1); 76 + strlen(file) + 1);
77 sprintf(cmd, fmt, framerate, width, height, framerate, file); 77 sprintf(cmd, fmt, framerate, width, height, framerate, file);
78 78