[Remove] Some useless debugs.

This commit is contained in:
Allanis 2013-12-11 22:59:12 +00:00
parent 9a31850ce7
commit 769880c7ac

View File

@ -175,7 +175,6 @@ int diff_apply(char* name) {
if(strcmp(diffname, name)==0) { if(strcmp(diffname, name)==0) {
diff_patch(node); diff_patch(node);
free(diffname); free(diffname);
DEBUG("Unidiff '%s' applied.", name);
return 0; return 0;
} }
free(diffname); free(diffname);
@ -359,7 +358,6 @@ void diff_remove(char* name) {
return; return;
diff_removeDiff(diff); diff_removeDiff(diff);
DEBUG("Unidiff '%s' removed.", name);
} }
/** /**