diff options
author | Jim Meyering <jim@meyering.net> | 2000-08-08 07:11:46 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-08-08 07:11:46 +0000 |
commit | b2557211cb23035c7aafc0311c15b05b214a8352 (patch) | |
tree | 551b776c37ba0c5893ad11e14609420197476e4e /src | |
parent | 6fa66b84143d5fd74d7b3aed615777801d31a08d (diff) | |
download | coreutils-b2557211cb23035c7aafc0311c15b05b214a8352.tar.xz |
(do_link): Invoke xalloc_die instead of printing our own message.
Diffstat (limited to 'src')
-rw-r--r-- | src/ln.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -262,7 +262,7 @@ do_link (const char *source, const char *dest) { char *tmp_backup = find_backup_file_name (dest, backup_type); if (tmp_backup == NULL) - error (1, 0, _("virtual memory exhausted")); + xalloc_die (); dest_backup = (char *) alloca (strlen (tmp_backup) + 1); strcpy (dest_backup, tmp_backup); free (tmp_backup); |