From: Jim Meyering Date: Wed, 5 Nov 2003 03:49:29 +0000 (+0000) Subject: (spec_init): Fix typo in last change. X-Git-Tag: v5.1.0~238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bea0f02fc7fa49d4f62cf91a27bf904f15c05b13;p=thirdparty%2Fcoreutils.git (spec_init): Fix typo in last change. --- diff --git a/src/tr.c b/src/tr.c index 099d65021e..3cb3bba103 100644 --- a/src/tr.c +++ b/src/tr.c @@ -1386,7 +1386,7 @@ get_s2_spec_stats (struct Spec_list *s2, size_t len_s1) static void spec_init (struct Spec_list *spec_list) { - struct Spec_list *new = xmalloc (sizeof *new); + struct List_element *new = xmalloc (sizeof *new); spec_list->head = spec_list->tail = new; spec_list->head->next = NULL; }