URI: 
       remove useless c->next = NULL - ii - irc it, simple FIFO based irc client
  HTML git clone git://git.suckless.org/ii
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 49e239fbb19f1dc880f269a1adb0543dadc1f4e9
   DIR parent a192aa3113a2e171b6061a827bba6e955de7bb11
  HTML Author: David Demelier <markand@malikania.fr>
       Date:   Fri, 17 Jan 2020 14:06:13 +0100
       
       remove useless c->next = NULL
       
       Diffstat:
         M ii.c                                |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/ii.c b/ii.c
       @@ -234,7 +234,7 @@ channel_new(const char *name)
                        fprintf(stderr, "%s: calloc: %s\n", argv0, strerror(errno));
                        exit(1);
                }
       -        c->next = NULL;
       +
                strlcpy(c->name, name, sizeof(c->name));
                channel_normalize_name(c->name);