]> git.wh0rd.org Git - nano.git/commitdiff
another formatting fix
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 7 Feb 2006 18:35:26 +0000 (18:35 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 7 Feb 2006 18:35:26 +0000 (18:35 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3278 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

src/files.c

index bda10d2128359df899092c8dfeaea8273d4d4f59..ee73afdfff761d3397320f7b12f16274ad79c689 100644 (file)
@@ -2006,8 +2006,8 @@ char **username_tab_completion(const char *buf, size_t *num_matches,
                continue;
 #endif
 
-           matches = (char **)nrealloc(matches,
-               (*num_matches + 1) * sizeof(char *));
+           matches = (char **)nrealloc(matches, (*num_matches + 1) *
+               sizeof(char *));
            matches[*num_matches] =
                charalloc(strlen(userdata->pw_name) + 2);
            sprintf(matches[*num_matches], "~%s", userdata->pw_name);