]> git.sur5r.net Git - i3/i3/commitdiff
Don't multiply by sizeof(char) twice.
authorFernando Tarlá Cardoso Lemos <fernandotcl@gmail.com>
Tue, 21 Feb 2012 16:53:01 +0000 (14:53 -0200)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 26 Mar 2012 14:47:44 +0000 (16:47 +0200)
This is a no-op, since sizeof(char) is 1. But still, we shouldn't
multiply twice, it's misleading.

libi3/ucs2_conversion.c

index 6f7cf28749a50a966459ceadc4b383fb3caa69d1..fe7c2d4cdc746404f4951f94e8023986060ad8e8 100644 (file)
@@ -24,7 +24,7 @@ static iconv_t ucs2_conversion_descriptor = (iconv_t)-1;
 char *convert_ucs2_to_utf8(xcb_char2b_t *text, size_t num_glyphs) {
     /* Allocate the output buffer (UTF-8 is at most 4 bytes per glyph) */
     size_t buffer_size = num_glyphs * 4 * sizeof(char) + 1;
-    char *buffer = scalloc(buffer_size * sizeof(char));
+    char *buffer = scalloc(buffer_size);
 
     /* We need to use an additional pointer, because iconv() modifies it */
     char *output = buffer;