Skip to content

Commit

Permalink
Cosmetics: fixed tab indents
Browse files Browse the repository at this point in the history
  • Loading branch information
margro committed Jan 19, 2019
1 parent 3d1c716 commit 931afab
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/GUIDialogRecordSettings.cpp
Expand Up @@ -93,7 +93,7 @@ CGUIDialogRecordSettings::~CGUIDialogRecordSettings()

bool CGUIDialogRecordSettings::OnInit()
{
// Display the recording details in the window
// Display the recording details in the window
m_window->SetControlLabel(LABEL_PROGRAM_TITLE, m_title.c_str());
string strTimeSlot = m_startDate + " " + m_startTime + " - " + m_endTime;
m_window->SetControlLabel(LABEL_PROGRAM_START_TIME, strTimeSlot.c_str());
Expand Down
6 changes: 3 additions & 3 deletions src/lib/tsreader/MemoryBuffer.cpp
Expand Up @@ -58,7 +58,7 @@ bool CMemoryBuffer::IsRunning()

void CMemoryBuffer::Clear()
{
P8PLATFORM::CLockObject BufferLock(m_BufferLock);
P8PLATFORM::CLockObject BufferLock(m_BufferLock);
std::vector<BufferItem *>::iterator it = m_Array.begin();

for ( ; it != m_Array.end(); ++it )
Expand Down Expand Up @@ -110,7 +110,7 @@ size_t CMemoryBuffer::ReadFromBuffer(unsigned char *pbData, size_t lDataLength)

// KODI->Log(LOG_DEBUG, "get..%d/%d", lDataLength, m_BytesInBuffer);
size_t bytesWritten = 0;
P8PLATFORM::CLockObject BufferLock(m_BufferLock);
P8PLATFORM::CLockObject BufferLock(m_BufferLock);

while (bytesWritten < lDataLength)
{
Expand Down Expand Up @@ -170,7 +170,7 @@ long CMemoryBuffer::PutBuffer(unsigned char *pbData, size_t lDataLength)
memcpy(item->data, pbData, lDataLength);
bool sleep = false;
{
P8PLATFORM::CLockObject BufferLock(m_BufferLock);
P8PLATFORM::CLockObject BufferLock(m_BufferLock);
m_Array.push_back(item);
m_BytesInBuffer += lDataLength;

Expand Down
2 changes: 1 addition & 1 deletion src/lib/tsreader/MemorySink.cpp
Expand Up @@ -87,7 +87,7 @@ void CMemorySink::addData(unsigned char* data, size_t dataSize, struct timeval U
return;
}

P8PLATFORM::CLockObject BufferLock(m_BufferLock);
P8PLATFORM::CLockObject BufferLock(m_BufferLock);

m_bReEntrant = true;
m_buffer.PutBuffer(data, dataSize);
Expand Down

0 comments on commit 931afab

Please sign in to comment.