diff --git a/get.c b/get.c
index 353a9f0ef0b49cc22552d600db1da671e3d76588..9ee9056c16ef60894b3d75e763fb3037ee864730 100644
--- a/get.c
+++ b/get.c
@@ -13,22 +13,15 @@ void valid_get(char* buffer) { // checks if the request is valid
 void parse(char* req, char* root) {
     // Extract just the file path from the request
     // message into the char array 'path'.
-    // printf("%s\n", req);
     const char* path_start = strchr(req, ' ') + 1;
-    // printf("%c start\n", *path_start);
     const char* path_end = strrchr(req, ' ');
-    // printf("%c final\n", *path_end);
-    // int path_len = path_start - path_end;
     char path[path_end - path_start];
     strncpy(path, path_start, path_end - path_start); 
     path[sizeof(path)] = '\0'; // null terminator
     // printf("root %s\n", root);
-    // printf("path %s\n", path);
     char full_path[sizeof(path) + sizeof(root)];
     strcpy(full_path, root);
     strcat(full_path, path);
-    // full_path[sizeof(full_path)-1] = 9;
-    printf("waiittt %s end\n", full_path);
     find_file(full_path);
 }
 
@@ -37,7 +30,8 @@ void find_file(char* path_to_file) {
 
     fp = fopen(path_to_file, "r");
     if (fp != NULL) {
-        printf("success...\n");fclose(fp);
+        printf("success...\n");
+        fclose(fp);
     } else {
         printf("fail\n");
     }