From ce29bd9b4f48c69ca54adc5dcc23a37d58ae1ec1 Mon Sep 17 00:00:00 2001 From: Shivam Chaudhary Date: Tue, 7 Feb 2023 10:58:33 +0100 Subject: [PATCH] Add missing declaration of parameter of function --- src/withdrawMoney.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/withdrawMoney.h b/src/withdrawMoney.h index f86e618..4310dba 100644 --- a/src/withdrawMoney.h +++ b/src/withdrawMoney.h @@ -3,4 +3,4 @@ void withdraw(int user_id); float initiateWithdraw(float amountToWithdraw, float availableAccountBalance); -void notifyCustomer(amountToWithdraw, remainingAccountBalance); \ No newline at end of file +void notifyCustomer(float amountToWithdraw, float remainingAccountBalance); \ No newline at end of file