aboutsummaryrefslogtreecommitdiff
path: root/lib/base
diff options
context:
space:
mode:
Diffstat (limited to 'lib/base')
-rw-r--r--lib/base/filepush.cpp2
-rw-r--r--lib/base/filepush.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/base/filepush.cpp b/lib/base/filepush.cpp
index 3901e76c..51b26239 100644
--- a/lib/base/filepush.cpp
+++ b/lib/base/filepush.cpp
@@ -206,7 +206,7 @@ void eFilePushThread::recvEvent(const int &evt)
m_event(evt);
}
-void eFilePushThread::filterRecordData(const char *data, int len)
+void eFilePushThread::filterRecordData(const unsigned char *data, int len)
{
/* do nothing */
}
diff --git a/lib/base/filepush.h b/lib/base/filepush.h
index e471b296..75037f66 100644
--- a/lib/base/filepush.h
+++ b/lib/base/filepush.h
@@ -37,7 +37,7 @@ public:
/* you can send private events if you want */
void sendEvent(int evt);
protected:
- virtual void filterRecordData(const char *data, int len);
+ virtual void filterRecordData(const unsigned char *data, int len);
private:
iFilePushScatterGather *m_sg;
int m_stop;