cRecord: fix last commit

This commit is contained in:
Stefan Seyfried
2012-10-12 06:35:29 +02:00
parent c4422bcfbb
commit 0e96784ad9
2 changed files with 4 additions and 4 deletions

View File

@@ -306,13 +306,13 @@ void cRecord::RecordThread()
pthread_exit(NULL); pthread_exit(NULL);
} }
int GetStatus() int cRecord::GetStatus()
{ {
/* dummy for now */ /* dummy for now */
return REC_STATUS_OK; return REC_STATUS_OK;
} }
void ResetStatus() void cRecord::ResetStatus()
{ {
return; return;
} }

View File

@@ -259,13 +259,13 @@ void cRecord::RecordThread()
pthread_exit(NULL); pthread_exit(NULL);
} }
int GetStatus() int cRecord::GetStatus()
{ {
/* dummy for now */ /* dummy for now */
return REC_STATUS_OK; return REC_STATUS_OK;
} }
void ResetStatus() void cRecord::ResetStatus()
{ {
return; return;
} }