summaryrefslogtreecommitdiff
path: root/lib/backupfile.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-07-24 13:00:24 +0000
committerJim Meyering <jim@meyering.net>1993-07-24 13:00:24 +0000
commit08701d38a4c4e746e79132651c4577a6c03b02f6 (patch)
tree7c692ae4719304c8ca74572944ac5a87c7677f70 /lib/backupfile.c
parent75dd04102776a59adda1c9747dfc0152de3c34b5 (diff)
downloadcoreutils-08701d38a4c4e746e79132651c4577a6c03b02f6.tar.xz
merge with 3.8
Diffstat (limited to 'lib/backupfile.c')
-rw-r--r--lib/backupfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/backupfile.c b/lib/backupfile.c
index f15e530bf..670db0f5d 100644
--- a/lib/backupfile.c
+++ b/lib/backupfile.c
@@ -216,7 +216,7 @@ concat (str1, str2)
char *str1, *str2;
{
char *newstr;
- char str1_length = strlen (str1);
+ int str1_length = strlen (str1);
newstr = malloc (str1_length + strlen (str2) + 1);
if (newstr == 0)