Skip to content

Commit 390b867

Browse files
committed
Bug Fixes and Performance Improvements
1 parent f2899eb commit 390b867

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Reservation.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ void Reservation::viewReservationsByName()
409409

410410
while (!ticketFileStream.eof())
411411
{
412-
if (strcmpi(getName(), n) == 0)
412+
if (strcmp(getName(), n) == 0)
413413
{
414414
_displayReservationDetails();
415415
chk = 1;

0 commit comments

Comments
 (0)