From: Fernando Tarlá Cardoso Lemos Date: Tue, 21 Feb 2012 16:53:01 +0000 (-0200) Subject: Don't multiply by sizeof(char) twice. X-Git-Tag: 4.2~42 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=95f510e724ac1fc3611e1b736c7ef367c493af81;p=i3%2Fi3 Don't multiply by sizeof(char) twice. This is a no-op, since sizeof(char) is 1. But still, we shouldn't multiply twice, it's misleading. --- diff --git a/libi3/ucs2_conversion.c b/libi3/ucs2_conversion.c index 6f7cf287..fe7c2d4c 100644 --- a/libi3/ucs2_conversion.c +++ b/libi3/ucs2_conversion.c @@ -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;