libresman

changeset 25:1be0a35aa216

removed a random debug printf left in the code
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 13 Feb 2014 21:34:41 +0200
parents ce04fa12afdd
children 6b9974a8bdae
files src/filewatch_win32.c
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line diff
     1.1 --- a/src/filewatch_win32.c	Thu Feb 13 21:30:05 2014 +0200
     1.2 +++ b/src/filewatch_win32.c	Thu Feb 13 21:34:41 2014 +0200
     1.3 @@ -209,9 +209,6 @@
     1.4  
     1.5  	for(;;) {
     1.6  		if(info->Action == FILE_ACTION_MODIFIED) {
     1.7 -			/*printf("file \"%s\" modified\n", res->name);
     1.8 -			tpool_add_work(rman->tpool, res);*/
     1.9 -
    1.10  			char *name;
    1.11  			int len = info->FileNameLength / 2;
    1.12  			wchar_t *wname = alloca((len + 1) * sizeof *wname);
    1.13 @@ -222,8 +219,6 @@
    1.14  			name = alloca(len + 1);
    1.15  			wcstombs(name, wname, len + 1);
    1.16  
    1.17 -			printf("MODIFIED: \"%s\"\n", name);
    1.18 -
    1.19  			witem = wdir->items;
    1.20  			while(witem) {
    1.21  				if(strstr(witem->res->name, name)) {