diff --git a/data_structure/Linked List.cpp b/data_structure/Linked List.cpp index 4fcb471c3..2af3f82a3 100644 --- a/data_structure/Linked List.cpp +++ b/data_structure/Linked List.cpp @@ -44,7 +44,7 @@ void remove(int x) { } if (temp == NULL) { - std::cout << endl << x << " not found in list\n"; + std::cout << std::endl << x << " not found in list\n"; return; }