diff --git a/include/flags.h b/include/flags.h index 27d935e..0d0979f 100644 --- a/include/flags.h +++ b/include/flags.h @@ -83,7 +83,7 @@ char *why2_get_memory_identifier(void); //RETURNS STRING USED IN LINKED LIST (IN char *why2_get_default_memory_identifier(void); //SETTERS -void why2_set_encryption_separator(char encryptionSeparatorNew); +void why2_set_encryption_separator(char encryption_separator_new); void why2_set_key_length(int keyLengthNew); void why2_set_flags(why2_input_flags newFlags); //.... whatcha think? void why2_set_encryption_operation(why2_encryption_operation_cb newEncryptionOperation); //are you that dumb? diff --git a/src/core/lib/flags.c b/src/core/lib/flags.c index 731f3a6..b7fedd2 100644 --- a/src/core/lib/flags.c +++ b/src/core/lib/flags.c @@ -155,7 +155,7 @@ char *why2_get_default_memory_identifier(void) } //SETTERS -void why2_set_encryption_separator(char encryptionSeparatorNew) +void why2_set_encryption_separator(char encryption_separator_new) { if (encryptionSeparatorNew <= 31) return;