about summary refs log tree commit diff stats
path: root/src/luasec
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2022-03-03 18:15:26 -0800
committerKartik K. Agaram <vc@akkartik.com>2022-03-03 18:15:26 -0800
commit101c59d8cbca9dda53fef3c15bb8f590eb1188b8 (patch)
treeaa594c0c0c27e70f768794373582b53598e29f1f /src/luasec
parent81849716faf31397dce443c3fa28723d22ac6d5a (diff)
downloadteliva-101c59d8cbca9dda53fef3c15bb8f590eb1188b8.tar.gz
experiment: drop -Wshadow
I'm totally fine with lexical scope in other languages. Why does it feel
like such a big deal in C?
Diffstat (limited to 'src/luasec')
-rw-r--r--src/luasec/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luasec/Makefile b/src/luasec/Makefile
index 8c84079..12babc6 100644
--- a/src/luasec/Makefile
+++ b/src/luasec/Makefile
@@ -9,7 +9,7 @@ OBJS= \
  config.o  \
  ec.o
 
-WARN=-Wall -Wshadow
+WARN=-Wall
 
 BSD_CFLAGS=-O2 -fPIC $(WARN) $(DEFS)
 BSD_LDFLAGS=-O -fPIC -shared