about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-05-01 22:43:21 +0100
committerJames Booth <boothj5@gmail.com>2012-05-01 22:43:21 +0100
commitbbc5b8bd662df14b5f69de830e3babd01da57887 (patch)
tree7ffddd7866344aa76a712bdbbe52807f33a5b735
parent773255b48f8eeafc9142e69c09e7b5718ad1826b (diff)
downloadprofani-tty-bbc5b8bd662df14b5f69de830e3babd01da57887.tar.gz
Removed debug from prof_history
-rw-r--r--prof_history.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/prof_history.c b/prof_history.c
index 75c22cb3..3653d181 100644
--- a/prof_history.c
+++ b/prof_history.c
@@ -1,4 +1,3 @@
-#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -33,7 +32,6 @@ PHistory p_history_new(unsigned int size)
 
 void p_history_append(PHistory history, char *item)
 {
-    printf("\n");
     // copy input, default to ""
     char *copied = "";
     if (item != NULL) {