Skip to content

Commit

Permalink
Makefile tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Nov 29, 2024
1 parent d0509d4 commit d0da4fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ distclean: distclean-local

# Static code analysis using 'cppcheck'
.PHONY: analyze
check:
analyze:
@echo " [analyze]"
@cppcheck $(CPPFLAGS) $(CHECKOPTS) src

Expand Down
2 changes: 1 addition & 1 deletion src/redisx-client.c
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ RESP *redisxReadReplyAsync(RedisClient *cl) {
int redisxResetClient(RedisClient *cl) {
static const char *fn = "redisxResetClient";

int status = X_SUCCESS;
int status;

if(cl == NULL) return x_error(X_NULL, EINVAL, fn, "client is NULL");

Expand Down

0 comments on commit d0da4fe

Please sign in to comment.