From eb0556f79fec4b7faaa374c702aa78bceb089334 Mon Sep 17 00:00:00 2001 From: Oskar <> Date: Fri, 22 Mar 2024 17:33:55 +0100 Subject: Fixed some more stuff --- i_validation.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'i_validation.c') diff --git a/i_validation.c b/i_validation.c index a21dd48..f032131 100644 --- a/i_validation.c +++ b/i_validation.c @@ -96,6 +96,8 @@ int validate_plus_continue(char *smode_buf) { // if vcpm returns _PLUS_CONTINUE } }//outer nested loop + return 0; // remove, its just here to make the compiler not output a bunch of warnings + } int validate_imm_numbers(char *smode_buf) { @@ -131,6 +133,8 @@ int validate_imm_numbers(char *smode_buf) { }//outer nested loop + return 0; // remove, its just here to make the compiler not output a bunch of warnings + } int validate_L(char *smode_buf) { @@ -153,10 +157,12 @@ int validate_L(char *smode_buf) { validate_decision = validate_check_p_m(smode_buf); - + printf("%i\n", validate_decision); // remove, its just here to make the compiler not output a bunch of warnings // this below will become validate_imm_numbers or something + return 0; // remove, its just here to make the compiler not output a bunch of warnings + } int validate_N(char *smode_buf) { -- cgit v1.2.3