mirror of
https://github.com/jedisct1/libsodium.git
synced 2026-08-25 08:37:13 +09:00
r -> ret
This commit is contained in:
+2
-2
@@ -89,9 +89,9 @@ prompt_input(const char *prompt, char *input, const size_t max_input_len,
|
||||
* Display whether the function was sucessful or failed.
|
||||
*/
|
||||
void
|
||||
print_verification(int r)
|
||||
print_verification(int ret)
|
||||
{
|
||||
if (r == 0)
|
||||
if (ret == 0)
|
||||
puts("Success!\n");
|
||||
else
|
||||
puts("Failure.\n");
|
||||
|
||||
Reference in New Issue
Block a user