From 0e96784ad9c8c22533e1f5d6c458bb7f8374ba5d Mon Sep 17 00:00:00 2001 From: Stefan Seyfried Date: Fri, 12 Oct 2012 06:35:29 +0200 Subject: [PATCH] cRecord: fix last commit --- libspark/record.cpp | 4 ++-- libtriple/record_td.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libspark/record.cpp b/libspark/record.cpp index 521b161..79497a8 100644 --- a/libspark/record.cpp +++ b/libspark/record.cpp @@ -306,13 +306,13 @@ void cRecord::RecordThread() pthread_exit(NULL); } -int GetStatus() +int cRecord::GetStatus() { /* dummy for now */ return REC_STATUS_OK; } -void ResetStatus() +void cRecord::ResetStatus() { return; } diff --git a/libtriple/record_td.cpp b/libtriple/record_td.cpp index 0289a3a..584aba7 100644 --- a/libtriple/record_td.cpp +++ b/libtriple/record_td.cpp @@ -259,13 +259,13 @@ void cRecord::RecordThread() pthread_exit(NULL); } -int GetStatus() +int cRecord::GetStatus() { /* dummy for now */ return REC_STATUS_OK; } -void ResetStatus() +void cRecord::ResetStatus() { return; }