From 390b867301c3e833412c39bb48830c4e3b3f504d Mon Sep 17 00:00:00 2001 From: Nikhil Rajput Date: Tue, 23 Jul 2024 23:02:41 +0530 Subject: [PATCH] Bug Fixes and Performance Improvements --- src/Reservation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Reservation.cpp b/src/Reservation.cpp index 161d766..d91410e 100644 --- a/src/Reservation.cpp +++ b/src/Reservation.cpp @@ -409,7 +409,7 @@ void Reservation::viewReservationsByName() while (!ticketFileStream.eof()) { - if (strcmpi(getName(), n) == 0) + if (strcmp(getName(), n) == 0) { _displayReservationDetails(); chk = 1;