aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRatakor <ratakor@disroot.org>2023-05-21 11:58:40 +0200
committerRatakor <ratakor@disroot.org>2023-05-21 11:58:40 +0200
commita786f07d9430981c420214afce691d5515f98e99 (patch)
tree6f7afe6781e931183544e3acf0bf84153dd33404
parent873d54c2fc9acbb6d89b85aca69f9abce2c5bf1e (diff)
Fix Makefile
One \ was missing.
-rw-r--r--snippets/make.snippets2
1 files changed, 1 insertions, 1 deletions
diff --git a/snippets/make.snippets b/snippets/make.snippets
index d7fb9c3..ddfe6b1 100644
--- a/snippets/make.snippets
+++ b/snippets/make.snippets
@@ -6,7 +6,7 @@ snippet base
DEBUG_CFLAGS = -g -Wall -W -ansi -pedantic -Werror -Wfloat-equal\
-Wpointer-arith -Wbad-function-cast -Wcast-qual -Wcast-align\
-Waggregate-return -Wstrict-prototypes -Wmissing-prototypes\
- -Wmissing-declarations -Wnested-externs -Wunreachable-code
+ -Wmissing-declarations -Wnested-externs -Wunreachable-code\
-Wundef -Wshadow
SRC = ${1:src}.c