From 37c4d2ce0edf907b4c76435ee75c23c4444b3bb9 Mon Sep 17 00:00:00 2001 From: Charles Date: Fri, 21 Feb 2020 01:15:37 +0100 Subject: Fixing buf not zeroed before test --- main.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 915ddc0..7aa4969 100644 --- a/main.c +++ b/main.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/06 18:13:45 by cacharle #+# #+# */ -/* Updated: 2020/02/20 01:11:09 by cacharle ### ########.fr */ +/* Updated: 2020/02/21 01:23:31 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -79,7 +79,7 @@ int main(int argc, char **argv) generated_test(); - // added according to user + // added according to users ASSERT_PRINTF("%.p", NULL); ASSERT_PRINTF("%.0p", NULL); ASSERT_PRINTF("%.2p", NULL); @@ -88,6 +88,7 @@ int main(int argc, char **argv) ASSERT_PRINTF("%.5p", NULL); ASSERT_PRINTF("%.6p", NULL); ASSERT_PRINTF("%.7p", NULL); + /* saved_test(); */ return 0; } -- cgit