Skip to content

Commit

Permalink
Fix long-standing typo in the logs
Browse files Browse the repository at this point in the history
Change-Id: I794ecab99d60c3b23f229b620ce811b2d00cce14
  • Loading branch information
DarthJabba9 authored and bigbiff committed Feb 15, 2021
1 parent cd79c90 commit 91cd2ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mtp/ffs/mtp_MtpDatabase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ MtpResponseCode IMtpDatabase::getObjectPropertyList(MtpObjectHandle handle, uint
return MTP_RESPONSE_OK;
}
}
MTPE("IMtpDatabase::getObjectPropertyList MTP_RESPOSNE_INVALID_OBJECT_HANDLE %i\n", handle);
MTPE("IMtpDatabase::getObjectPropertyList MTP_RESPONSE_INVALID_OBJECT_HANDLE %i\n", handle);
return MTP_RESPONSE_INVALID_OBJECT_HANDLE;
}

Expand Down Expand Up @@ -612,7 +612,7 @@ MtpResponseCode IMtpDatabase::getObjectFilePath(MtpObjectHandle handle,
return MTP_RESPONSE_OK;
}
}
MTPE("IMtpDatabase::getObjectFilePath MTP_RESPOSNE_INVALID_OBJECT_HANDLE %i\n", handle);
MTPE("IMtpDatabase::getObjectFilePath MTP_RESPONSE_INVALID_OBJECT_HANDLE %i\n", handle);
return MTP_RESPONSE_INVALID_OBJECT_HANDLE;
}

Expand Down

0 comments on commit 91cd2ea

Please sign in to comment.