summaryrefslogtreecommitdiff
path: root/src/tet3/tcc/resdir.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tet3/tcc/resdir.c')
-rw-r--r--src/tet3/tcc/resdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tet3/tcc/resdir.c b/src/tet3/tcc/resdir.c
index 86232bd8..869b894c 100644
--- a/src/tet3/tcc/resdir.c
+++ b/src/tet3/tcc/resdir.c
@@ -143,7 +143,7 @@ char *resroot;
while ((dp = READDIR(dirp)) != (struct dirent *) 0)
if ((thisval = atoi(dp->d_name)) > maxval)
maxval = thisval;
- (void) CLOSEDIR(dirp);
+ CLOSEDIR(dirp);
}
/*
@@ -156,7 +156,7 @@ char *resroot;
/* construct the name of the subdirectory for the selected
modes of operation */
- (void) sprintf(buf, "%04d%s", maxval, resdirsuffix());
+ sprintf(buf, "%04d%s", maxval, resdirsuffix());
return(buf);
}