Skip to content

Commit

Permalink
[pvr] Fix incorrect log-line which may confuse addon authors
Browse files Browse the repository at this point in the history
  • Loading branch information
jdembski committed Oct 24, 2012
1 parent 9a40622 commit 0bf26f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/pvr/addons/PVRClient.cpp
Expand Up @@ -896,7 +896,7 @@ int64_t CPVRClient::GetStreamLength(void)
else if (IsPlayingRecording())
{
try { return m_pStruct->LengthRecordedStream(); }
catch (exception &e) { LogException(e, "PositionRecordedStream()"); }
catch (exception &e) { LogException(e, "LengthRecordedStream()"); }
}
return -EINVAL;
}
Expand Down

0 comments on commit 0bf26f7

Please sign in to comment.