Skip to content

Commit

Permalink
Bug Fixes and Performance Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
nixrajput committed Jul 23, 2024
1 parent f2899eb commit 390b867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Reservation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ void Reservation::viewReservationsByName()

while (!ticketFileStream.eof())
{
if (strcmpi(getName(), n) == 0)
if (strcmp(getName(), n) == 0)
{
_displayReservationDetails();
chk = 1;
Expand Down

0 comments on commit 390b867

Please sign in to comment.