aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-26 17:35:31 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-26 17:35:31 +0100
commitb885a9fe913441fef1e9b8add36a620b411c3375 (patch)
tree7b90d50e8e85859e649fccf049744cb560c06b69 /main.c
parent37c4d2ce0edf907b4c76435ee75c23c4444b3bb9 (diff)
downloadft_printf_test-b885a9fe913441fef1e9b8add36a620b411c3375.tar.gz
ft_printf_test-b885a9fe913441fef1e9b8add36a620b411c3375.tar.bz2
ft_printf_test-b885a9fe913441fef1e9b8add36a620b411c3375.zip
Removed test which cause warnings
Diffstat (limited to 'main.c')
-rw-r--r--main.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/main.c b/main.c
index 7aa4969..f4405e4 100644
--- a/main.c
+++ b/main.c
@@ -6,7 +6,7 @@
/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2020/02/06 18:13:45 by cacharle #+# #+# */
-/* Updated: 2020/02/21 01:23:31 by cacharle ### ########.fr */
+/* Updated: 2020/02/26 17:33:55 by cacharle ### ########.fr */
/* */
/* ************************************************************************** */
@@ -81,13 +81,13 @@ int main(int argc, char **argv)
// added according to users
ASSERT_PRINTF("%.p", NULL);
- ASSERT_PRINTF("%.0p", NULL);
- ASSERT_PRINTF("%.2p", NULL);
- ASSERT_PRINTF("%.3p", NULL);
- ASSERT_PRINTF("%.4p", NULL);
- ASSERT_PRINTF("%.5p", NULL);
- ASSERT_PRINTF("%.6p", NULL);
- ASSERT_PRINTF("%.7p", NULL);
+ /* ASSERT_PRINTF("%.0p", NULL); */
+ /* ASSERT_PRINTF("%.2p", NULL); */
+ /* ASSERT_PRINTF("%.3p", NULL); */
+ /* ASSERT_PRINTF("%.4p", NULL); */
+ /* ASSERT_PRINTF("%.5p", NULL); */
+ /* ASSERT_PRINTF("%.6p", NULL); */
+ /* ASSERT_PRINTF("%.7p", NULL); */
/* saved_test(); */
return 0;