changeset 2235:9c4f69fcb4b1

Remove accidentally committed unused code.
author Matti Hamalainen <ccr@tnsp.org>
date Sat, 15 Jun 2019 06:18:09 +0300
parents ef1845cb436e
children 57ccd949093f
files tools/64vw.c
diffstat 1 files changed, 0 insertions(+), 26 deletions(-) [+]
line wrap: on
line diff
--- a/tools/64vw.c	Sat Jun 15 06:06:23 2019 +0300
+++ b/tools/64vw.c	Sat Jun 15 06:18:09 2019 +0300
@@ -267,32 +267,6 @@
     return res;
 }
 
-#if 0
-        DIR *dirh;
-        struct dirent *entry;
-
-        if ((dirh = opendir(npath)) == NULL)
-        {
-            int err = th_get_error();
-            THERR("Could not open directory '%s': %s\n",
-                path, th_error_str(err));
-            ret = FALSE;
-            goto out;
-        }
-
-        while ((entry = readdir(dirh)) != NULL)
-        if (entry->d_name[0] != '.')
-        {
-            if (!argHandleFileDir(npath, entry->d_name, pattern))
-            {
-                ret = FALSE;
-                goto out;
-            }
-        }
-
-        closedir(dirh);
-#endif
-
 
 int main(int argc, char *argv[])
 {