Skip to content

Commit

Permalink
use -Wno-format-security
Browse files Browse the repository at this point in the history
  • Loading branch information
jvierling committed Nov 19, 2021
1 parent e978347 commit c6cff76
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ladr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CC = gcc

# XFLAGS can be specified on the command line (see XFLAGS below)

CFLAGS = $(XFLAGS) -O -Wall
CFLAGS = $(XFLAGS) -O -Wall -Wno-format-security
# CFLAGS = $(XFLAGS) -O6 -Wall
# CFLAGS = $(XFLAGS) -g -O -Wall
# CFLAGS = $(XFLAGS) -g -O0 -Wall
Expand Down
2 changes: 1 addition & 1 deletion mace4.src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ CC = gcc

# XFLAGS can be specified on the command line (see XFLAGS below)

CFLAGS = $(XFLAGS) -O -Wall
CFLAGS = $(XFLAGS) -O -Wall -Wno-format-security
# CFLAGS = $(XFLAGS) -O6 -Wall
# CFLAGS = $(XFLAGS) -g -O -Wall
# CFLAGS = $(XFLAGS) -g -Wall
Expand Down

0 comments on commit c6cff76

Please sign in to comment.