tidy-up: whitespace

Closes #18553
This commit is contained in:
Viktor Szakats 2025-09-02 14:20:26 +02:00
parent 61b79dee79
commit a4196e2249
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
23 changed files with 51 additions and 90 deletions

View file

@ -26,7 +26,7 @@
TARGET = example
# Which object files that the executable consists of
OBJS= ftpget.o
OBJS = ftpget.o
# What compiler to use
CC = gcc
@ -48,7 +48,7 @@ LIBS = -lcurl -lsocket -lnsl -lssl -lcrypto
# Link the target with all objects and libraries
$(TARGET) : $(OBJS)
$(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)
$(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS)
# Compile the source files into object files
ftpget.o : ftpget.c