From 9a113ed4169a530b94fbd99f1e0f4b7902fb655c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 19 Aug 2021 17:50:21 +0200 Subject: [PATCH] docs(capi): fix typo in the upload example build (#2626) --- capi/examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capi/examples/Makefile b/capi/examples/Makefile index 2bd5c44982..951c99fe62 100644 --- a/capi/examples/Makefile +++ b/capi/examples/Makefile @@ -19,7 +19,7 @@ $(TARGET): $(OBJS) $(CC) -o $(TARGET) $(OBJS) $(LDFLAGS) $(LIBS) $(TARGET2): $(OBJS2) - $(CC) -o $(TARGET2) $(OBJS) $(LDFLAGS) $(LIBS) + $(CC) -o $(TARGET2) $(OBJS2) $(LDFLAGS) $(LIBS) clean: rm -f $(OBJS) $(TARGET) $(OBJS2) $(TARGET2)