Skip to content

Commit

Permalink
fixed, really ? I mean really?
Browse files Browse the repository at this point in the history
  • Loading branch information
davilla committed Oct 28, 2013
1 parent 98aa1c3 commit e0ad223
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xbmc/filesystem/MythFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "DirectoryCache.h"
#include "threads/SingleLock.h"
#include "utils/log.h"
#include "utils/StringUtils.h"
#include "utils/TimeUtils.h"

extern "C" {
Expand Down Expand Up @@ -638,7 +639,7 @@ bool CMythFile::PrevChannel(bool preview)

bool CMythFile::SelectChannel(unsigned int channel)
{
return ChangeChannel(CHANNEL_DIRECTION_SAME,""+channel);
return ChangeChannel(CHANNEL_DIRECTION_SAME, StringUtils::Format("%d", channel));
}

bool CMythFile::CanRecord()
Expand Down

0 comments on commit e0ad223

Please sign in to comment.