From 5e2b8d160b7ea0873e93ed9b0bec07b7fe49482d Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 29 Jul 2020 14:41:57 +0200 Subject: [PATCH] LibCore: Rename puff.c => puff.cpp Now that we don't keep a C compiler around in the toolchain (to save space) we can't have .c files in the build. This reminds me that #362 exists and we should fix that at some point. --- Libraries/LibCore/CMakeLists.txt | 2 +- Libraries/LibCore/{puff.c => puff.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Libraries/LibCore/{puff.c => puff.cpp} (100%) diff --git a/Libraries/LibCore/CMakeLists.txt b/Libraries/LibCore/CMakeLists.txt index 6d288e8562..cbf87c7d66 100644 --- a/Libraries/LibCore/CMakeLists.txt +++ b/Libraries/LibCore/CMakeLists.txt @@ -18,7 +18,7 @@ set(SOURCES Notifier.cpp Object.cpp ProcessStatisticsReader.cpp - puff.c + puff.cpp SocketAddress.cpp Socket.cpp StandardPaths.cpp diff --git a/Libraries/LibCore/puff.c b/Libraries/LibCore/puff.cpp similarity index 100% rename from Libraries/LibCore/puff.c rename to Libraries/LibCore/puff.cpp