From 78b4c4f029af6684b799b093734b67c6a86ad4d1 Mon Sep 17 00:00:00 2001 From: Gonglja Date: Mon, 16 Jan 2023 16:16:38 +0800 Subject: [PATCH] fix(codes/c): Fix compilation error of `list.c` caused by renaming. --- codes/c/chapter_array_and_linkedlist/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codes/c/chapter_array_and_linkedlist/CMakeLists.txt b/codes/c/chapter_array_and_linkedlist/CMakeLists.txt index 144aa2d74..29677a0be 100644 --- a/codes/c/chapter_array_and_linkedlist/CMakeLists.txt +++ b/codes/c/chapter_array_and_linkedlist/CMakeLists.txt @@ -1,3 +1,3 @@ add_executable(array array.c) add_executable(linked_list linked_list.c) -add_executable(list list.c) \ No newline at end of file +add_executable(my_list my_list.c) \ No newline at end of file