From 02a6e840058ce21d5fdecd0c3167ef3faf842bb7 Mon Sep 17 00:00:00 2001
From: Daniel Olsson <danol716@student.liu.se>
Date: Tue, 8 Oct 2019 16:07:51 +0200
Subject: [PATCH] Removed print still has errors

---
 debugging/fileutil.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/debugging/fileutil.cpp b/debugging/fileutil.cpp
index 93acfdd..4363e61 100644
--- a/debugging/fileutil.cpp
+++ b/debugging/fileutil.cpp
@@ -28,12 +28,10 @@ int main(int argc, char **argv)
     printf("File cannot be open \n" );
     return 0;
   }
-  printf("Hej\n" );
   while (!feof(fin)) {
     getline(line, fin);
     lines[cur] = (char*) malloc(strlen(line));
     strcpy(lines[cur], line);
-    printf("%d\n",cur );
     cur++;
   }
   fclose(fin);
-- 
GitLab