From 4fd7e754caf964df899d9a41b6cf10fc2a1d90bf Mon Sep 17 00:00:00 2001 From: ken Date: Sat, 14 Jan 2017 16:31:13 -0800 Subject: [PATCH] removed debug messages --- src/scanner.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/scanner.c b/src/scanner.c index abf472e..d9aa426 100644 --- a/src/scanner.c +++ b/src/scanner.c @@ -96,24 +96,20 @@ int scanner_scandir goto scan_next_dirent; switch (direntp->d_type) { case DT_REG: - printf("lexfile %s\n",direntp->d_name); lexer_lexfile((uint8_t*)direntp->d_name); goto scan_next_dirent; case DT_DIR: lexer_lexdir((uint8_t*)direntp->d_name); //lex the dirname - printf("lexdir %s\n",direntp->d_name); if (chdir(direntp->d_name)) //change to the specified dir goto libfail; errno = 0; if ((cdirp = opendir(".")) == NULL || errno) //open it goto libfail; - printf("Scanner entered [%s]\n",direntp->d_name); if(scanner_scandir(cdirp)) //scan the directory goto libfail; if (chdir("..")) //return to the parent dir goto libfail; lexer_closedir(); //push "Close Directory" token - printf("Scanner returned\n"); goto scan_next_dirent; //continue scan case DT_UNKNOWN: warnx("unknown file %s: ignoring", direntp->d_name); -- 2.18.0