]> git.sur5r.net Git - i3/i3/commitdiff
config_parser: don't use sizeof(char)
authorshdown <shdownnine@gmail.com>
Mon, 3 Aug 2015 09:51:20 +0000 (12:51 +0300)
committershdown <shdownnine@gmail.com>
Mon, 3 Aug 2015 09:51:20 +0000 (12:51 +0300)
src/config_parser.c

index 4e16f0605f9b4cccdb943fa1376f8669bcc069e3..e563c808808a593d6c2ca23f2e49e04765a48ad9 100644 (file)
@@ -931,7 +931,7 @@ bool parse_file(const char *f, bool use_nagbar) {
     /* Then, allocate a new buffer and copy the file over to the new one,
      * but replace occurences of our variables */
     char *walk = buf, *destwalk;
-    char *new = smalloc((stbuf.st_size + extra_bytes + 1) * sizeof(char));
+    char *new = smalloc(stbuf.st_size + extra_bytes + 1);
     destwalk = new;
     while (walk < (buf + stbuf.st_size)) {
         /* Find the next variable */