From 978f65dcd66dcc1256b6037f8af76a622fd4153d Mon Sep 17 00:00:00 2001 From: Blboun3 <62328614+Blboun3@users.noreply.github.com> Date: Tue, 16 Jan 2024 12:43:45 +0100 Subject: [PATCH] changed spaces to tabs in makefile --- server/Makefile | 10 +++++----- server/main.c | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/server/Makefile b/server/Makefile index a4d31af..6c44051 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,14 +1,14 @@ all: server clean: - rm -rf *.o - @rm -rf server + rm -rf *.o + @rm -rf server server: main.o httpd.o - gcc -o server $^ -lssl -lcrypto + gcc -o server $^ -lssl -lcrypto main.o: main.c httpd.h - gcc -c -o main.o main.c -lssl -lcrypto + gcc -c -o main.o main.c -lssl -lcrypto httpd.o: httpd.c httpd.h - gcc -c -o httpd.o httpd.c \ No newline at end of file + gcc -c -o httpd.o httpd.c \ No newline at end of file diff --git a/server/main.c b/server/main.c index 2102b80..a76e5e4 100644 --- a/server/main.c +++ b/server/main.c @@ -151,7 +151,7 @@ void route() { POST("/") { HTTP_201; - printf("Wow, seems that you POSTed %d bytes.\n", payload_size); + printf("Wow, seems that you POSTed %d bytes. \n", payload_size); printf("Fetch the data using `payload` variable.\n"); if (payload_size > 0) printf("Request body: %s", payload);