Commit 5a829404 authored by YoongHM's avatar YoongHM Committed by Yoav Steinberg
Browse files

Fix compilation warnings in Lua and jemalloc dependencies (#7785)



- The argument `u` in for `ar` is ignored (and generates warnings since `D` became the default.
  All it does is avoid updating unchanged objects (shouldn't have any impact on our build)
- Enable `LUA_USE_MKSTEMP` to force the use of `mkstemp()` instead of `tmpname()` (which is dead
  code in redis anyway).
- Remove unused variable `c` in `f_parser()`
- Removed misleadingly indented space in `luaL_loadfile()` and ``addfield()`
Co-authored-by: default avatarOran Agra <oran@redislabs.com>
parent c6a26519
...@@ -517,7 +517,7 @@ CTARGET='-o $@' ...@@ -517,7 +517,7 @@ CTARGET='-o $@'
LDTARGET='-o $@' LDTARGET='-o $@'
TEST_LD_MODE= TEST_LD_MODE=
EXTRA_LDFLAGS= EXTRA_LDFLAGS=
ARFLAGS='crus' ARFLAGS='crs'
AROUT=' $@' AROUT=' $@'
CC_MM=1 CC_MM=1
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment