Skip to content

Commit f983055

Browse files
committedDec 19, 2023
fix: Improve formatting of subbrute_protocol_calc_max_value declaration
The subbrute_protocol_calc_max_value function declaration has been reformatted for readability. Previously, the declaration was split across multiple lines; it is now consolidated onto a single line for cleaner presentation. This change does not impact the function's behavior or robustness.
1 parent bae0dfc commit f983055

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed
 

‎subbrute_protocols.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -356,6 +356,4 @@ void subbrute_protocol_file_generate_file(
356356
*
357357
* @return The maximum value that can be generated based on the attack parameters (uint64_t).
358358
*/
359-
uint64_t
360-
subbrute_protocol_calc_max_value(SubBruteAttacks attack_type, uint8_t bits, bool two_bytes);
361-
subbrute_protocol_calc_max_value(SubBruteAttacks attack_type, uint8_t bits, bool two_bytes);
359+
uint64_t subbrute_protocol_calc_max_value(SubBruteAttacks attack_type, uint8_t bits, bool two_bytes);

0 commit comments

Comments
 (0)
Please sign in to comment.