From 476333d19204a4b8acaf76e2c9d3629ab4f73772 Mon Sep 17 00:00:00 2001 From: antirez Date: Thu, 12 Dec 2019 09:29:10 +0100 Subject: [PATCH] Remove useless space from moduleLoad(). --- src/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.c b/src/module.c index 35d351255..8acafccfe 100644 --- a/src/module.c +++ b/src/module.c @@ -6985,7 +6985,7 @@ int moduleLoad(const char *path, void **module_argv, int module_argc) { int (*onload)(void *, void **, int); void *handle; RedisModuleCtx ctx = REDISMODULE_CTX_INIT; - + struct stat st; if (stat(path, &st) == 0) { // this check is best effort