From 6514f91f564cd85186b01f70fa7e0cb81e7c91c7 Mon Sep 17 00:00:00 2001 From: Loganaden Velvindron Date: Wed, 14 Jan 2026 09:55:08 +0400 Subject: [PATCH] Fix mistake that disables fortify source security flag --- Makefile_devel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile_devel b/Makefile_devel index fc8a47d..85ea04e 100644 --- a/Makefile_devel +++ b/Makefile_devel @@ -1,5 +1,5 @@ CC = gcc -CFLAGS = -std=c11 -pedantic -Wall -Wextra -O0 -g3 -DFORTIFY_SOURCE=2 \ +CFLAGS = -std=c11 -pedantic -Wall -Wextra -O0 -g3 -D_FORTIFY_SOURCE=2 \ -Wformat-truncation -Wstringop-truncation \ -Wformat-overflow -Wstringop-overflow \ -Wmissing-prototypes -Wmissing-declarations \