summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-11-05 03:49:29 +0000
committerJim Meyering <jim@meyering.net>2003-11-05 03:49:29 +0000
commitbea0f02fc7fa49d4f62cf91a27bf904f15c05b13 (patch)
tree7f0e009aee94a381df4971d174bff18f7a66490c
parente809d156e95e7dda30dbddc80fabd623e783641a (diff)
downloadcoreutils-bea0f02fc7fa49d4f62cf91a27bf904f15c05b13.tar.xz
(spec_init): Fix typo in last change.
-rw-r--r--src/tr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tr.c b/src/tr.c
index 099d65021..3cb3bba10 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;
}