From 769880c7ac016e93a648ad0add49c83a79d80dd1 Mon Sep 17 00:00:00 2001
From: Allanis <allanis@saracraft.net>
Date: Wed, 11 Dec 2013 22:59:12 +0000
Subject: [PATCH] [Remove] Some useless debugs.

---
 src/unidiff.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/unidiff.c b/src/unidiff.c
index 492364d..46af680 100644
--- a/src/unidiff.c
+++ b/src/unidiff.c
@@ -175,7 +175,6 @@ int diff_apply(char* name) {
       if(strcmp(diffname, name)==0) {
         diff_patch(node);
         free(diffname);
-        DEBUG("Unidiff '%s' applied.", name);
         return 0;
       }
       free(diffname);
@@ -359,7 +358,6 @@ void diff_remove(char* name) {
     return;
 
   diff_removeDiff(diff);
-  DEBUG("Unidiff '%s' removed.", name);
 }
 
 /**