summaryrefslogtreecommitdiff
path: root/i_validation.c
diff options
context:
space:
mode:
authorOskar <>2024-03-22 17:33:55 +0100
committerOskar <>2024-03-22 17:33:55 +0100
commiteb0556f79fec4b7faaa374c702aa78bceb089334 (patch)
treeee1fd3c27589d74df70e76eed7647fb5a5b81e81 /i_validation.c
parent6f162676864f6972c302ecab71e44149fa039551 (diff)
Fixed some more stuff
Diffstat (limited to 'i_validation.c')
-rw-r--r--i_validation.c8
1 files changed, 7 insertions, 1 deletions
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) {